본문 바로가기
TIP)

[JSP, SPRING] JSP에서 java properties 파일 안의 값 가져오는 방법

by 모리야의 잡다한 블로그 2023. 4. 7.
728x90
반응형

 

1. XML

 

spring->appServlet->servlet-context.xml

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
						http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

		<util:properties id="property" location="/WEB-INF/spring/property/프로퍼티스 이름.properties" />
 

 

 

2. Properties 파일

 

 

값 설정

WebcontentURL=1234
 
 

 

 

3. JSP 값 입력

//<html>태그 위에 작성 설정임
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>



// 위 또는 아래 방법 사용
<spring:eval expression="@property['WebcontentURL']"/>
<spring:message code="WebcontentURL"/>
 

 

 

728x90
반응형

댓글