一、 解决关联第三方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 就行了
注意:关联了项目源码之后,进行Debug时,Eclipse可能会弹出如下图的错误提示,直接点OK忽略即可。
----------------------------------------------------------