Saturday 5 September 2015

How to ignore the EL expression evaluation in a JSP?

We can ignore EL evaluation in JSP page by two ways.
  1. Using page directive as <%@ page isELIgnored="true" %>
  2. Configuring in web.xml – better approach when you want to disable EL evaluation for many JSP pages.
    1
    2
    3
    4
    5
    6
    <jsp-config>
        <jsp-property-group>
            <url-pattern>*.jsp</url-pattern>
            <el-ignored>true</el-ignored>
        </jsp-property-group>
    </jsp-config>

No comments:

Post a Comment