Servlet2.5默认不支持EL表达式的解决办法

Servlet2.5默认不支持EL表达式的解决办法

 

  只需稍作配置就可用了

  配置如:页面中:<%@ page isELIgnored="false" %>

  或者在web.xml里设置  

  <jsp-config>   

  <jsp-property-group>   

  <url-pattern>*.jsp</url-pattern>   

  <el-ignored>false</el-ignored>   

  <!-- <el-ignored>true</el-ignored> -->   

  </jsp-property-group>   

  </jsp-config>

你可能感兴趣的:(jsp,xml,Web)