1

Will my web application project deploy in jboss application server?

if it is deployed in jboss server of eclipse, how to debug it ?

Yellow Flash
  • 862
  • 2
  • 10
  • 29
  • 1
    look at this question: http://stackoverflow.com/questions/18182666/eclipse-remote-debugging-with-jboss – Markus Apr 08 '14 at 13:47

1 Answers1

1

You can attach a remote debugger if you're using Eclipse. All you need is a server name, port, and to add some configurations to the JBoss launch.

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

These arguments should be used to run JBoss, then you can connect to port 8787 (or whatever you specify) to remotely debug.

Kon
  • 10,702
  • 6
  • 41
  • 58