Register now and start sharing your code snippets.
-->
Enable remote debugging in weblogic
Shell Script (Bash) posted about 1 year ago by marko
Sometimes it’s necessary to debug because you can’t write a test for it (e.g a legacy system). Just add the following parameters to the server startup and connect your preferred debugger into port 1044 (or whatever you choose the port to be). Works in weblogic, but should work in JBoss and other java based application servers too.
1 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044