使用 tomcat 插件“tomcat7-maven-plugin”,我试图让“热部署”与嵌入式 tomcat 一起工作(使用 tomcat7:run)。
我在 Eclipse 下使用典型的 Maven Web 应用程序配置。从现在开始,我可以调试我的 java 类,它们会在代码更改时自动重新部署
但是我的 html 和 jsp 没有得到 * re *deployed (${basedir}/src/main/webapp)。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<update>true</update>
<contextReloadable>true</contextReloadable>
</configuration>
</plugin>
(我使用的是原型“Thymeleaf Spring Maven Archetype”)。
知道如何在更改时重新部署 html 和 jsp 吗?