lsyf8 发表于 2017-2-8 11:37:03

关于maven tomcat plugin 调试源码的解决方案

  一、 解决关联第三方jar源码
  在pom文件中加入:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<additionalProjectnatures>
<projectnature>org.eclipse.jdt.core.javanature</projectnature>
<projectnature>org.eclipse.m2e.core.maven2Nature</projectnature>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
<buildcommand>org.eclipse.m2e.core.maven2Builder</buildcommand>
<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
</configuration>
</plugin>
</plugins>
</build>
      在项目下执行:

mvn dependency:sources
     然后再执行:

mvn eclipse:eclipse
   
      基本上第三方jar就关联上源码了。。
  二、关联项目的源码
  Debug As --> Debug Configuration -->在右侧面板选择Source -->Add -->Project 
   下面就选择自己的项目,添加进来,一路Ok,Apply 就行了
页: [1]
查看完整版本: 关于maven tomcat plugin 调试源码的解决方案