I have a doubt regarding this scenario
I have added the this tag in web.xml
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>true</el-ignored>
</jsp-property-group>
<jsp-config>
if you do so El should be disabled.
In the ROOT webapps i have the code like
<html>
<body>
<h1>Hello EL</h1>
${param.command}
</body>
</html>
if i try like this
http://localhost/jspex/test5.jsp?command=Hi Hi is printing. But as per spec we shouldn't get. Why I am getting Hi print.
Anybody can explain it.
Thanks