Is there any solution for enabling EL in JSP. For now, I have to add <%@ page isELIgnored="false" %>
in all pages. It looks so messy.
I tried add config in web.xml like this
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>
Any ideas?