java – 在开发环境中,在tomcat中重新加载webapp是一种简单,快速的方法?

前端之家收集整理的这篇文章主要介绍了java – 在开发环境中,在tomcat中重新加载webapp是一种简单,快速的方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Windows上运行Tomcat 6.我有“监视器Tomcat”系统托盘图标,允许我启动和关闭Tomcat,但还有另一个小工具,允许我在更改类文件时轻松地重新加载我的网络应用程序?我知道与Tomcat一起提供的“经理”应用程序,但只是想知道是否有一个本地应用程序会做到这一点更快更好?

解决方法

只需在Context中添加一个reloadable = true属性即可.引用 documentation

Set to true if you want Catalina to monitor classes in /WEB-INF/classes/ and /WEB-INF/lib for changes,and automatically reload the web application if a change is detected. This feature is very useful during application development,but it requires significant runtime overhead and is not recommended for use on deployed production applications. That’s why the default setting for this attribute is false. You can use the 07001 web application,however,to trigger reloads of deployed applications on demand.

原文链接:https://www.f2er.com/java/125322.html

猜你在找的Java相关文章