Eclipse Remote debugging with jboss

て烟熏妆下的殇ゞ 提交于 2019-12-12 08:26:50

问题


How can I configure remote debugging in Eclipse with JBOSS server 4.x version?

So far,

Step1: I have modified the run.confg file. By uncommenting the below line. Sample JPDA settings for remote socket debugging:

JAVA_OPTS="$JAVA_OPTS -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n"

Step2 : Then I configured Eclipse in debug configurations. It's saying:

Failed to connect to remote VM. Connection refused.

回答1:


What you are asking is not specific to either Java EE or JBoss 4.x - you can debug any Java process in case you specified the remote debugging runtime parameters when starting the JVM.

In your setting the -Xdebug parameter is missing, so your line would be:

JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n"

Now it should be able to connect, in case you are using the correct host and your specified port 8787. In case it's still not working, it's most likely a firewall issue blocking the port.



来源:https://stackoverflow.com/questions/18182666/eclipse-remote-debugging-with-jboss

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!