生产和测试环境中 Tomcat Web 应用程序的属性

发布于 2024-10-20 18:35:50 字数 271 浏览 2 评论 0原文

我们有一个 Web 应用程序(tomcat 上的 Metro Web 服务),需要处理属性以访问远程系统。

当然,在测试环境和生产环境中,属性是不同的。

我们可以使用 WAR 文件部署属性文件,但这需要在部署应用程序后执行手动步骤。 (部署后编辑)

在其他项目中,我们将属性文件位于已部署的 Web 应用程序“上方”的目录中,以避免属性文件被更改 - 但我不确定这是否是一个好的设计。

使用 tomcat Web 应用程序处理服务器特定属性的“最干净”方法是什么?

We have a web application (Metro web services on tomcat) and need to handle properties to access remote systems.

Of course the properties are different in test and production environment.

We could deploy a properties file with the WAR file, but this would require manual steps after the deployment of the application. (editing after the deployment)

In other projects we had property files located in directories 'above' the deployed web application, to avoid that the property files are changed - but I'm not sure if this is a good design.

Which is the 'cleanest' way of handling server specific properties with tomcat web applications?

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

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

发布评论

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

评论(2

云仙小弟 2024-10-27 18:35:50

在 Tomcat 的 server.xml 中定义设置,然后使用 JNDI 在应用程序中访问它们。请参阅:http://tomcat.apache.org/tomcat-6.0 -doc/jndi-resources-howto.html

Define the settings in Tomcat's server.xml, then access them in your application with JNDI. See: http://tomcat.apache.org/tomcat-6.0-doc/jndi-resources-howto.html

酷炫老祖宗 2024-10-27 18:35:50

要么直接将其放入 WEB-INF/classes 中,如果是由非技术人员配置,则将其保存在 user.home/appName/

Either put it directly it into WEB-INF/classes and if it is made to configure by non technical person then keep it in user.home/appName/

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