Tomcat的server.xml动态配置
我的 Web 应用程序使用与应用程序 XYZ 相同的数据库配置。我在 server.xml 中有一个上下文的资源声明,因此我有一个重复的配置(一次用于 Web 应用程序,一次用于应用程序 XYZ)。如何将一些“外部”值读取到 server.xml 中?例如:
<Resource name="jdbc/MyDB" username="${user}" password="${pwd}" url="${url}" ...
My web application uses the same database configuration as the application XYZ. I have a resource declaration for a context in server.xml, so I have a duplicated configuration (once for web application and once for application XYZ). How can I read some 'external' values into server.xml? For example:
<Resource name="jdbc/MyDB" username="${user}" password="${pwd}" url="${url}" ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之 - 你不能用 tomcat 配置来做到这一点。另外,对于 server.xml,重新加载它的唯一方法是重新启动服务器。
如果您仅在一个 Web 应用程序中需要数据源,那么一种方法是使用 spring 框架和 PropertyPlaceholderConfigurer。
另一种方法可能是继承 tomcat 的 StandardHost 和 StandardContext< /a> 并进行一些自定义解析。
In short - you can't do this with tomcat configuration. Also, specific for server.xml, the only way to reload it is to restart the server.
If you need the datasource only within one web application, then a way to do it is by using the spring framework and PropertyPlaceholderConfigurer.
Another way might be to inherit from tomcat's StandardHost and StandardContext and do some custom parsing.