티스토리 뷰
JSP에서 spring 설정 파일인 application.properties 안의 내용을 가지고 와야 할 경우가 있다.
이럴 경우는 다음과 같이 간단하게 가져올 수 있다.
<spring:eval expression="@environment.getProperty('spring.mvc.view.prefix')" var="jspPath" />
위와 같이 정의하면 jspPath라는 변수에 spring.mvc.view.prefix의 value 값이 세팅이 된다.
물론 spring tag에 대한 정의는 미리 되어 있어야 한다.
<%@taglib prefix="spring" uri="http://www.springframework.org/tags"%>
끝!
'Lang > Servlet&JSP' 카테고리의 다른 글
파일 업로드시 upload.parseRequest(request)가 null이 나오는 오류 조치 (2) | 2021.05.18 |
---|---|
the import javax servlet http cannot be resolved 오류 조치 (0) | 2021.05.04 |
Invalid character found in method name .. HTTP method names must be tokens 오류 조치 (0) | 2021.04.09 |
Cannot change version of project facet Dynamic Web Module to 3.0 오류 해결하기 (0) | 2020.07.30 |
JSP에서 Custom Tag Library 만들어서 사용하기 (0) | 2020.07.06 |
댓글