如何在不重新启动tomcat6服务器的情况下重新加载servlet
如果我的 $TOMCAT_HOME/conf/server.xml 上有多个主机定义 如何在不重新启动 tomcat6 服务器的情况下重新加载 servlet? Tomcat 与多主机一起使用时需要哪些参数?
unpackWARs autoDeploy liveDeploy deployXML 等
---添加了新文本 -- 我不喜欢手动重新启动 tomcat 管理器,因为我配置了不同的虚拟主机。如果用户上传了新的 servlet 版本,我更喜欢 tomcat 自动重新加载新版本,而无需系统管理员干预,以便手动重新启动整个 tomcat 服务器。
server.xml 中的上下文定义示例如下:
<Context path="" docBase="/webapps/client.com/servlets" reloadable="true" privileged="true"/>
但是,当这个 client.com 上传了新的 servlet 时,tomcat 已经很多天没有刷新新版本了,他需要打电话给我才能重新启动汤姆猫服务器。这种干预会影响同一服务器中其他用户的正常操作。
If I have multiple Host definition on my $TOMCAT_HOME/conf/server.xml How can I reload the servlet without restart the tomcat6 server? What are the parameters for use Tomcat like with multiple host?
unpackWARs autoDeploy liveDeploy deployXML etc.
---new text added--
I don't like restart manually the tomcat manager, because I have differents Virtual Host configured. If a user uploaded a new servlet version, I prefer that tomcat automatically reload the new version WITHOUT the sysadmin intervention in order to restart manually the complete tomcat server.
A sample of context definition inside the server.xml is like this:
<Context path="" docBase="/webapps/client.com/servlets" reloadable="true" privileged="true"/>
But, when this client.com has uploaded a new servlet, the tomcat doesn't refresh a new version in many days, and he needs call me in order to restart the tomcat server. This intervention affects the normal operation to other users in the same server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查这个线程(简而言之 - 设置
)另外,我认为在调试模式下运行tomcat应该允许这样做。 (如果您不通过 IDE 运行它,请添加-Xdebug
Check this thread(in short - set<Context reloadable="true" />
) Also, I think running tomcat in debug mode should allow that. (If you don't run it through an IDE, add-Xdebug
servlet 上下文的重新加载可以通过 Tomcat 管理器应用程序完成。如果您通过重新加载来说明您的意图,那么会更容易给出更具体的答案。
Reloading of servlet contexts can be done via the Tomcat manager application. If you tell what you intend by reloading it'd be easier to give a more specific answer.