 Another usefull Debugging technique worked well for me: Step one: Configure the JVM in the propertiesfile to listen on a remotedebugging port: # Java Additional Parameters for debugging wrapper.java.additional.1=-Xdebug wrapper.java.additional.2=-Xnoagent #wrapper.java.additional.3=-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n # or: wrapper.java.additional.3=-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=y If you enable suspend, the JVM stops and waits for a connection before the serviceapplication starts. If you disable it, the service/application runs normal until a debug client connects and sends breakpoints. Step two: Connect with your favourite debug client (eclipse in my case) and start debugging. |