Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Apache Tomcat 5.5.25。
我希望将要更新的 JSP 文件生效(在访问该 JSP 时向用户显示更新的内容)而无需重新启动服务器。
我不想删除 _/org/apache/jsp 下的文件。但我希望我更新的 JSP 反映其更新的内容。
web.xml我用checkInterval, modificationTestInterval&配置就足够了development吗?
web.xml
checkInterval
modificationTestInterval
development
在 Tomcat 5.5 中,您可以设置reloading为true以仅检查 JSP 页面是否已被修改。
reloading
但是,是的,如果你设置development为true它也很好,只是更贪婪。
也可以看看: