禁用EL方法

禁用EL方法:
1、\${expression}
2、<%@page isELIgnored="true|false"%>
3、web.xml中
     <jsp-config>
         <jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-property-group>
</jsp-config>

你可能感兴趣的:(EL)