One EL config issue is there:
<%@ page isELIgnored="false" %>
${10 + 15}<br>
While using the above statements I am getting the perfect output i.e. 25. Now I want to isELIgnored="false"
for the entire web application so I modified the web.xml as:
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>
</web-app>
But not getting the proper output. What is wrong over there? Some additional steps are required or what? Please help.
Thanks in advance