步骤3:新建Maven 项目
3.1.可手动建:详细参照官网:http://maven.apache.org/guides/getting-started/index.html
mvn archetype:create /
-DarchetypeGroupId=org.apache.maven.archetypes /
-DgroupId=com.mycompany.app /
-DartifactId=my-app
3.3 在pom文件中加入tomcat 插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<!-- <url>http://localhost:8080/manager/html</url> -->
</configuration>
</plugin>
步骤四:建好项目后,eclipse中工具栏run下拉菜单选择External Tools ->External Tools Configurations..>
1. 在对话框中新建program
2.Main 面板中输入Mavan 路径 如:D:/apache-maven-2.2.1/bin/mvn.bat
3. Working directory 中输入项目目录
4.Arguments 中输入运行参数 如 tomcat :run
5.Environment中新建参数:MAVEN_OPTS,值为:
-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=4004,server=y,suspend=y
其中记住address=4004
步骤五:
项目右键菜单启用远程调试: Debug As ->run configurations>
1。新建Remote Java Application,Contenction Properties>Project 项目名称 Host:服务器名称(localhost)Port:端口(4004与步骤四中的address相对应).