Remote debugging with tomcat 6.0.16 Permanently deleted user 创建于 2008年05月22日 08:52 Hi,in the edit configuration's debug profile there is this:-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,suspend=n,server=yhow to pass this info to tomcat? thanks.
You cant "pass" them to the server.
The server has to be started with these arguments.
I always edit ]]>\bin\catalina.bat directly, but it should work to set JAVA_OPTS environment variable before calling the server start script.
I have a sh file like this:
export JPDA_ADDRESS=8000
export SET JPDA_TRANSPORT=dt_socket
./catalina.sh jpda start
is this the same?