EL이 안되는 경우

필요한 라이브러리(jstl.jar, standard.jar) 모두 넣었음.
Tomcat 5.5 환경에서 EL이 안됨

혹시나 해서 isELIgnored를 false로 두니깐 된다.
<%@page isELIgnored="true" %>

//web.xml
<jsp-config>
	<jsp-property-group>
	<url-pattern>*.jsp</url-pattern>
	<el-ignored>true</el-ignored>
	</jsp-property-group>
</jsp-config>

그런데 왜 C사 박모씨 개발환경에서만 이럴까?

그리고 el-enabled 속성은 없다.
스펙에도 없는데 왜 많은 사이트에서 이 속성을 언급하는지 모르겠다.

http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd
http://java.sun.com/xml/ns/j2ee/jsp_2_0.xsd
<xsd:element name="el-ignored"
           type="j2ee:true-falseType"
           minOccurs="0">
    <xsd:annotation>