Struts2属性文件重新加载

发布于 2024-12-04 10:35:37 字数 508 浏览 0 评论 0原文

我的 struts.xml

<constant name="struts.devMode" value="true" />
<constant name="struts.i18n.reload" value="true" />
<constant name="struts.custom.i18n.resources" value="global" />

当我对 global.properties 文件进行任何更改时,它不会在 JSP 页面上显示任何反射,我所需要做的就是重新加载我的属性文件。

我已经阅读了 说明,但我不明白我是什么丢失的。请帮我解决问题。

谁能帮我解决这个问题?

My struts.xml:

<constant name="struts.devMode" value="true" />
<constant name="struts.i18n.reload" value="true" />
<constant name="struts.custom.i18n.resources" value="global" />

When I make any changes to my global.properties file, it does not show any reflection on JSP pages, all I need is to reload my properties file.

I have gone through the instructions, but I do not understand what I am missing. Please help me solve the problem.

can anyone help me to solve this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

望她远 2024-12-11 10:35:37

当修改后向服务器发送新请求时,会发生重新加载。你没有这样做吗?我刚刚遇到了这个问题,并搜索了 Apache 官方指南和以下内容
启用后,Struts 2 将在每次请求时重新加载您的资源包(这意味着您可以更改 .properties 文件,保存它们,并查看下一个请求中反映的更改)。
注意:此选项也可以通过 struts.i18n.reload = true 独立设置

The reload happens when you send a new request to the server after the modification. Haven't you done that? I have been facing this problem just now and search Apache official guideline and fount following
When enabled, Struts 2 will reload your resource bundles on every request (meaning you can change your .properties files, save them, and see the changes reflected on the next request).
Note: this option can also be set standalone via struts.i18n.reload = true

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