首页 > 代码库 > Jetty Remote Debugging

Jetty Remote Debugging

Via command line

 $ java -Xdebug -agentlib:jdwp=transport=dt_socket,address=9999,server=y,suspend=n -jar start.jar

Via start.ini

 ## Enable remote debugging

 --exec

 -Xdebug

 -agentlib:jdwp=transport=dt_socket,address=9999,server=y,suspend=n

本文出自 “Frank” 博客,请务必保留此出处http://zengfanhong.blog.51cto.com/8894077/1601526

Jetty Remote Debugging