mvn jetty debug

mvn 的web工程代码调试设置

1、需要在pox文件配置以下依赖及插件

 <dependency>
   <groupId>org.mortbay.jetty</groupId>
   <artifactId>jetty</artifactId>
   <version>6.1.24</version>
   <scope>test</scope>
  </dependency>

<plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
    <configuration>
     <stopPort>8005</stopPort>
     <stopKey>foo</stopKey>
    </configuration>
   </plugin>

 2、在mvn bulid 的goal中输入 jett:run 即可。

     设置的断点不能stop,根据提示添加src的路径,重新debug即可。

你可能感兴趣的:(mvn jetty debug)