一、 解决关联第三方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 就行了
本文详细介绍了如何通过Maven插件将第三方jar源码与项目源码关联,包括在pom文件中配置插件、执行特定命令等步骤,并指导如何在Debug模式下查看源码。

294

被折叠的 条评论
为什么被折叠?



