使用更新重新部署时如何保留 xml 配置?
我正在使用 tomcat 管理器来部署我的 war 文件。要更新战争,我使用以下网址:
http://localhost:8080/manager/deploy?path=/example&war=file:/path/example.war&update=true
问题是,使用此网址时,带有配置的 xml(在 Catalina/localhost/example.xml 下)会被删除。
我该如何保存它?
I'm using tomcat manager to deploy my war files. To update a war I use the following url:
http://localhost:8080/manager/deploy?path=/example&war=file:/path/example.war&update=true
The problem is that using this, the xml with the configuration (under Catalina/localhost/example.xml), is erased.
How can I preserve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的配置放在 Web 应用程序的
META-INF/context.xml
中,tomcat 将处理剩下的事情。Place your configuration in your webapp's
META-INF/context.xml
and tomcat will take care of the rest.