关于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 就行了

猜你喜欢

转载自1358440610-qq-com.iteye.com/blog/2179429