热门代码使用Maven部署tomcat

热门代码使用Maven部署tomcat,第1张

热门代码使用Maven部署tomcat

我使用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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5427770.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存