Tomcat的server.xml动态配置

发布于 2024-08-11 19:19:04 字数 246 浏览 3 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

各自安好 2024-08-18 19:19:04

简而言之 - 你不能用 tomcat 配置来做到这一点。另外,对于 server.xml,重新加载它的唯一方法是重新启动服务器。

如果您仅在一个 Web 应用程序中需要数据源,那么一种方法是使用 spring 框架和 PropertyPlaceholderConfigurer

另一种方法可能是继承 tomcat 的 StandardHostStandardContext< /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.

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