• Maven在Eclipse中使用调试


    步骤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相对应).
  • 相关阅读:
    Intellij IDEA 配置Tomcat远程调试
    maven学习二(dependencies)
    maven学习一(HelloWorld工程)
    一致性hash在分布式系统中的应用
    理解TCP之Keepalive
    理解HTTP之keep-alive
    TCP/IP,http,socket,长连接,短连接
    图解 HTTP 协议
    PHP开发的一些趣事
    vue
  • 原文地址:https://www.cnblogs.com/huapox/p/3516337.html
Copyright © 2020-2023  润新知