Possible duplicate:
Link interface constant from EL
So, I have a JSP that currently does not have scriptlets in it, i.e. there are no occurrences of "<%" (except for "<% @") and instead several occurrences of "$ {javaVar}", which is an EL.
Now I need to add something like this:
<security:hasPermissionTo functionKey="<%= FunctionKeyConstants.CREATE %>" ...
But I do not want to break the agreement on this JSP. Can I do this with EL? Or any other suggestions?
source
share