开发者

Struts2 properties file reload

开发者 https://www.devze.com 2023-04-05 04:30 出处:网络
My struts.xml: <constant name=\"struts.devMode\" value=\"true\" /> <constant name=\"struts.i18n.reload\" value=\"true\" />

My struts.xml:

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

开发者_StackOverflowWhen 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??


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

0

精彩评论

暂无评论...
验证码 换一张
取 消