How do I use the eclipse debugger to debug the stacktrace of the core JSF libraries?

Welcome I am distributing some applications written by Sprint and JSF. My work has partially written xml configuration files. After some changes I got reports from library generators.

Is it possible to access the attached Eclipse debugger jars and set which method is throwing the error (and why)?

+1


source to share


1 answer


You can rephrase what you are asking here.

You can of course connect using the Eclipse debugger to this application. You will need to run it in debug mode. You will need to pass some parameters to the JVM. Something like



java -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=127.0.0.1 ..

      

You can also point Eclipse to source jars so you can execute the code. But since you are talking about config files, I would rather check the logs.

0


source







All Articles