글
isELIgnored=false - JSP
J/Jsp
2014. 3. 27. 15:23
출처 : http://www.okjsp.net/seq/157163
1. 모든 jsp 페이지에 isELIgnored를 붙인다.
<%@ page isELIgnored="false" contentType="text/html; charset=utf-8"%>
2. web.xml의 servlet 버젼을 올린다(2.4이상?).
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee " target="_blank">" target="_blank">http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
3. 이건 될지?.. 테스트 안해봤지만
web.xml에
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>
'J > Jsp' 카테고리의 다른 글
Error creating bean with name 'sqlSessionFactory' defined in ServletContext resource (0) | 2014.07.27 |
---|---|
Round, Floor and Ceiling in JSP Expression Language (0) | 2014.06.18 |
MVC model 1 구조 이해를 위한 간략한 그림! (0) | 2012.02.18 |
jotm을 이용한 transaction처리 (0) | 2012.01.26 |
Filter 매핑 설정시 주의 사항 (0) | 2012.01.04 |