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


只需稍作配置就可用了

方法一:

在jsp页面的开头添加如下标签:

<%@ page isELIgnored="false" %>

方法二:

在web.xml里设置:

<jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <!-- <el-ignored>默认为true,设置为false即可 -->
        <el-ignored>false</el-ignored>
    </jsp-property-group>   
</jsp-config>
 

over!

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