zoukankan      html  css  js  c++  java
  • 整合maven,jetty,jrebel进行debug调试

    整合maven,jetty,jrebel进行调试

    maven配置

    这个网上有很多,验证mvn是否配置正确:

    mvn -version

    Jrebel配置

    jetty配置

    • maven插件,pom.xml中插入

      <plugin>
          <groupId>org.eclipse.jetty</groupId>
          <artifactId>jetty-maven-plugin</artifactId>
          <version>9.1.3.v20140225</version>
          <configuration>
                 <useTestScope>true</useTestScope>
              <scanIntervalSeconds>0</scanIntervalSeconds>
              <useTestClasspath>true</useTestClasspath>
              <webApp>
                  <!-- 从jetty的jar中拷贝出webdefault.xml 修改其中的参数 ,可以修改html,js -->
                  <defaultsDescriptor>src/test/resources/jetty.xml</defaultsDescriptor>
                  <contextPath>/${project.artifactId}</contextPath>
                  <descriptor>${project.build.directory}/test-classes/web.xml</descriptor>
              </webApp>
                 <testClassesDirectory>${project.build.testOutputDirectory}</testClassesDirectory>
              <stopKey>foo</stopKey>
              <stopPort>9999</stopPort>
          </configuration>
      </plugin>
    • run configurations

      maven命令 jvm参数

      -noverify
      -javaagent:D:/software/jrebel/jrebel.jar
      -Xbootclasspath/p:jrebel-bootstrap.jar;jrebel.jar
      -Drebel.generate.show=true
      -Drebel.spring_plugin=true
      -Drebel.aspectj_plugin=true
      -Drebel.cxf_plugin=true
      -Drebel.logback_plugin=true
      -Drebel.mybatis_plugin=true
      -Xdebug  -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n

    开始调试

    1. 点击上图中的run按钮

      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel: #############################################################
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:  JRebel 5.4.2 (201311271505)
      2014-03-17 20:28:55 JRebel:  (c) Copyright ZeroTurnaround OU, Estonia, Tartu.
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:  Over the last 30 days JRebel prevented
      2014-03-17 20:28:55 JRebel:  at least 2 redeploys/restarts saving you about 0.1 hours.
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:  Over the last 257 days JRebel prevented
      2014-03-17 20:28:55 JRebel:  at least 97 redeploys/restarts saving you about 3.9 hours.
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:  This product is licensed to www.sdandroid.com
      2014-03-17 20:28:55 JRebel:  for unlimited number of developer seats on site.
      2014-03-17 20:28:55 JRebel:   ####### Cracked by sdandroid (blog@sdandroid.com) ######
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:  The following plugins are disabled at the moment:
      2014-03-17 20:28:55 JRebel:  * Axis2 plugin (set -Drebel.axis2_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Camel plugin (set -Drebel.camel_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Click plugin (set -Drebel.click_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Deltaspike plugin (set -Drebel.deltaspike_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Eclipse RCP Plugin (set -Drebel.eclipse_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * JBoss7 EJB Plugin (set -Drebel.jboss7_ejb_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * JRuby Plugin (set -Drebel.jruby_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Jersey plugin (set -Drebel.jersey_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Log4j2 plugin (set -Drebel.log4j2_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Mustache Plugin (set -Drebel.mustache_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * RESTlet plugin (set -Drebel.restlet_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Seam-Wicket plugin (set -Drebel.seam_wicket_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Spring Data Plugin (set -Drebel.spring_data_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Thymeleaf Plugin (set -Drebel.thymeleaf_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * VRaptor plugin (set -Drebel.vraptor_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * Vaadin CDI utils plugin (set -Drebel.vaadin_cdiutils_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:  * WebObjects plugin (set -Drebel.webobjects_plugin=true to enable)
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel: #############################################################
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel:
      2014-03-17 20:28:55 JRebel: A newer version '5.5.1' is available for download
      2014-03-17 20:28:55 JRebel: from http://zeroturnaround.com/software/jrebel/download/
      2014-03-17 20:28:55 JRebel:
      Listening for transport dt_socket at address: 8787
      SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".

    当控制台开始打出如上的日志,说明你的项目正以jrebel的方式启动,并开启的debug端口为8787(如倒数第二行)

    此时的项目如同没开debug一样,不会进入断点

    2.添加远程调试

       

    单击debug按钮后,就可以自动进入断点了

  • 相关阅读:
    山屋惊魂 · 大模拟 · 码长破千 · 祭
    CSP-S 模拟92
    CSP-S 模拟91
    关于我
    CSP-S 模拟76
    [2020 年联考 A 卷] HEOI 2020 退役记
    csp-s 2019 退役记
    论人贵有自知之明的重要性
    [NOI2018] 你的名字
    HDU 3446 daizhenyang's chess
  • 原文地址:https://www.cnblogs.com/juforg/p/3606142.html
Copyright © 2011-2022 走看看