How to debug JBossESB?

Many times when I use JBossESB, something doesn't work, due to configuration issues. In a complex ESB, it is not obvious what is wrong. I know I can use tracing with system.out, but is there a way to use debug to detect these configuration errors?

I have no experience debugging a JBoss Server or JBoss ESB code.

+4
source share
1 answer

Probably the best thing to do is to use small service configurations and use org.jboss.soa.esb.actions.SystemPrintln liberally.

You can also connect the source to a tool, such as JBDS (or Eclipse, or Netbeans, etc.), and debug this path.

+1
source

Source: https://habr.com/ru/post/1338454/


All Articles