ENV-dev-eclipse debug关联代码脚本

1)

debug配置里必选  Resolve Workspace artifacts

2)

maven 配置 Download Artifact Sources

3)

pom.xml添加

<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

重启eclips
原文地址:https://www.cnblogs.com/heling/p/11733046.html