您的web.xml可能引用Servlet 2.3规范,默认情况下该规范
isELIgnored设置为
true。如果您改为参考Servlet
2.4规范,
isELIgnored则
false默认设置为。
如果要引用Servlet 2.4规范,则web.xml标头应如下所示:
<web-app 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 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">



