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.
我曾经能够编辑我的 java 文件并查看差异(system.out.print 等...)但是发生了一些事情,现在每次我做出最小的更改时,tomcat 都会重新启动,我必须等待它启动所以我可以看到变化。
有谁知道为什么?
您需要编辑 web.xml,使其具有以下内容:
<Context reloadable="true">
<Context reloadable="false">
做这项工作。
感谢abalogh的建议