How to set agentlib property for mvn tomcat plugin (jpda)

前端 未结 3 1106
萌比男神i
萌比男神i 2020-12-30 06:37

Related to eclipse debug remote web application => How do I debug a remote application in my eclipse

How can I set / archive this in the mvn tomcat plugin? http://to

相关标签:
3条回答
  • 2020-12-30 06:53

    It's a bit old thread but for the sake of completeness I though i might add a little here.

    The plugin does not provide debug options configuration for whatever strange reason. Thus your only option is to manually specify debug configuration to the JVM that runs the process. In your environment, there are three ways achieve this:

    1. Using a well known-maven environment variable (as described by childno.de)
    2. Directly specifying the options to maven (no env. variable needed):

      mvn -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y tomcat7:run-war

    3. With an eclipse Run configuration That's basically the same like 2) but you define this in eclipse (that would be good if you didn't want to leave the IDE at all). To achieve that you need to specify a Maven Build Run configuration. Set the goal to tomcat7:run (or similar) and then navigate to the JRE tab. The VM arguments area is where you specify the debug configuration: -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y
    If you opt for 3), the precise run goal for tomcat7 is irrelevant to the debug enabling. Choose according to you use case (dynamic web project, war, etc.). Same goes for the plugin configuration. However, make sure to specify that you are using the tomcat maven plugin in the pluginManagement section of your project pom:

    <pluginManagement>
       <plugins>
            <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.1</version>
        </plugin>
        </plugins>
    </pluginManagement>
    
    0 讨论(0)
  • 2020-12-30 06:57
    $ export MAVEN_OPTS=-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n
    $ mvn tomcat7:run-war
    

    ^^ that's it, not cool (as it is not in POM) but it works

    Source: http://aaronz-sakai.blogspot.de/2009/02/debugging-jetty-when-running-mvn.html

    0 讨论(0)
  • 2020-12-30 07:02

    OR... you could simply add the following tag to your plugin configuration

     <jpda>true</jpda>
    

    Then when you execute: mvn tomcat7:run, it will start jpda on port 8000.

    Funny thing is even though I have tested this and it works, I can't find any code in the opensource code base to explain why it works, nor have I found any way to change from the default port 8000.

    Apache seems to have dropped the ball when it comes to documentation of this plugin.

    0 讨论(0)
提交回复
热议问题