我使用tomcat-maven-plugin及其目标
tomcat7:run是从eclipse内启动tomcat(顺便说一句,使用eclipse的m2e插件-很棒的工具-
可从Eclipse市场购买)。热代码替换对我也不起作用。但是我使用了一种解决方法:使用
<contextReloadable>true</contextReloadable>tomcat,只要它检测到文件更改,就会重新加载该应用程序。
<build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <path>/myapp</path> <contextReloadable>true</contextReloadable> </configuration> </plugin> </plugins></build>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)