Struts2属性文件重新加载
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当修改后向服务器发送新请求时,会发生重新加载。你没有这样做吗?我刚刚遇到了这个问题,并搜索了 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