在 JSP 中引用静态字段而不使用 scriptlet
可能的重复:
来自 EL 的参考接口常量
所以我有一个 JSP,目前没有 scriptlet,即没有出现“<%”(“<%@”除外),而是多次出现“${javaVar}”,即 EL。
我现在需要添加如下内容:
<security:hasPermissionTo functionKey="<%= FunctionKeyConstants.CREATE %>" ...
但我不想打破此 JSP 的约定。我可以使用 EL 来做到这一点吗?或者还有其他建议吗?
Possible Duplicate:
Reference interface constant from EL
So I have a JSP that currently has no scriptlets in it, i.e. there are no occurrences of "<%" (with the exception of "<%@") and instead multiple occurrences of "${javaVar}", which is EL.
I now need to add something like this:
<security:hasPermissionTo functionKey="<%= FunctionKeyConstants.CREATE %>" ...
But I don't want to break the convention of this JSP. Can I do this using EL? Or any other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是 Java 类
JSP
然后
Java Class
JSP
then