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.
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-property-group>
</jsp-config>