任何人都可以告诉我如何使用Cargo(Tomcat)插件调试eclipse中的代码吗?
我们在Windows 7操作系统中使用Java 8,Tomcat 8,eclipse Juno。
我要提到的另一件事是,我们无法控制修改Tomcat脚本,因为每次执行mvn -P dev clean package cargo:run
时都会从Nexus存储库(或本地存储库缓存)中新安装tomcat。 / p>
答案 0 :(得分:1)
对于调试Cargo,您可以像这样配置容器:
<container>
<containerId>tomcat4x</containerId>
<home>c:/apps/jakarta-tomcat-4.1.30</home>
<log>target/cargo.log</log>
<logLevel>debug</logLevel>
</container>
如果要调试容器,请使用以下命令设置JVM:
-Xdebug
-Xrunjdwp:transport=dt_socket,server=y,suspend=<suspend>,address=<port>
-Xnoagent
-Djava.compiler=NONE
有关货物调试的更多信息是here。
我写了一篇关于使用集成测试的maven货物插件的博客文章。也许它会帮助你。 http://hrabosch.com/2016/06/12/how-to-run-integration-tests-with-cargo-maven-plugin-in-a-separate-container/ 有Jetty,但你可以把它改成tomcat。