gpt4 book ai didi

java -/struts/webconsole.html 在设置 Struts2 devMode=false 后仍然有效

转载 作者:行者123 更新时间:2023-12-04 21:29:31 25 4
gpt4 key购买 nike

我在struts.xml中设置了以下配置参数:

<constant name="struts.devMode" value="false" />
<constant name="struts.configuration.xml.reload" value="true" />
<constant name="struts.i18n.reload" value="false" />

struts.properties 中:struts.devMode=false

webconsole.html 页面仍在加载。如何解决这个问题?

最佳答案

devMode 属性与 webconsole 无关,它只做这些事情:

  • 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).
  • It will also reload your xml configuration files (struts.xml), your validation files, and so on, on every request. This is useful for testing or fine-tuning your configuration without having to redeploy your application every time.
  • And thirdly, perhaps the setting which is less widely known, and therefore a source of much confusion: it will raise the level of debug or normally ignorable problems to errors. For example: when you submit a field which cannot be set on an action 'someUnknownField', it will normally be ignored. However, when you're in development mode, an exception will be thrown, telling you an invalid field was submitted. This is very useful for debugging or testing large forms, but can also be confusing if you're relying on parameters in your request that are not set on the action, but which you are using directly in your view layer (warning: bad practice, you should always validate input from the web).

我假设您来自 here ,我的建议是:你不应该甚至在生产机器上部署这个组件。

关于java -/struts/webconsole.html 在设置 Struts2 devMode=false 后仍然有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30883698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com