Struts 2 - 比较对象

发布于 2024-09-07 09:02:37 字数 240 浏览 2 评论 0原文

我正在尝试将值与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守不住的情 2024-09-14 09:02:37

请参阅 Struts 文档中的访问静态属性

我认为你需要的是:

<s:if test="myValue == @com.app.core.Values@ALL">

你可能还需要将struts配置常量struts.ognl.allowStaticMethodAccess设置为true。

See Accessing static properties in the Struts documentation.

I think what you need is:

<s:if test="myValue == @com.app.core.Values@ALL">

You may also need to set the struts configuration constant struts.ognl.allowStaticMethodAccess to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文