首页 > 其他 > 详细

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

时间:2015-01-26 02:08:29      阅读:440      评论:0      收藏:0      [点我收藏+]

一、 解决关联第三方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 tomcat plugin 调试源码的解决方案

原文:http://1358440610-qq-com.iteye.com/blog/2179429

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!