Para poder debugear desde eclipse un JBoss añadir la siguiente opción en el fichero de configuración.
En UNIX, standalone.conf:
rem # Sample JPDA settings for remote socket debugging
set "JAVA_OPTS=%JAVA_OPTS% -agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n"
En Windows, standalone.conf:
rem # Sample JPDA settings for remote socket debugging
set "JAVA_OPTS=%JAVA_OPTS% -agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n"
En el eclipse hay que:
- Ir a Debug Configurations
- Añadir una nueva configuración en Remote Java Application.
- Seleccionar el proyecto, ip y puerto (8787).