Struts 2 - 比较对象
我正在尝试将值与 Struts 中的枚举进行比较:
<s:if test="%{myValue == com.app.core.Values.ALL}" />
其中 myValue
在操作中声明,而 com.app.core.Values
在另一个项目中声明,该项目是参考了这个。
有什么建议吗?
谢谢
i'm trying to compare a value to an Enum in Struts:
<s:if test="%{myValue == com.app.core.Values.ALL}" />
where myValue
is declared in the Action and com.app.core.Values
is declared in another project that is referenced to this one.
Any tips?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 Struts 文档中的访问静态属性 。
我认为你需要的是:
你可能还需要将struts配置常量struts.ognl.allowStaticMethodAccess设置为true。
See Accessing static properties in the Struts documentation.
I think what you need is:
You may also need to set the struts configuration constant struts.ognl.allowStaticMethodAccess to true.