1 Reply Latest reply on Jun 19, 2013 2:56 AM by hoang_to

    run and debug web application project

    mahdi1991

      hi , i'm new to jbpm5 , i have downloaded a web application example.

      how can run (and debug) a maven jbpm5 web application project in eclipse helios with jboss AS 7 .

      thx for your help !

        • 1. Re: run and debug web application project
          hoang_to

          What you have to do is to enable the debugger for JVM running your web application, that has nothing to see with JBPM . Let's check the right place to parse following property to your JVM

           

          -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000

           

          In case you trigger your app via Maven plugin, i am almost sure that the plugin provides a way to init debugger infrastructure. Let's take the case of Maven Surefire plugin, you could enable debugger with  mvn clean instal -Dmaven.surefire.debug=true