生产和测试环境中 Tomcat Web 应用程序的属性
我们有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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
要么直接将其放入
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 inuser.home/appName/