0

I'm debugging a struts 2 application and trying to get the debugging interceptor to work.

In struts.xml I added this line and restartet tomcat:

<constant name="struts.devMode" value="true" />

Next I added ?debug=browser to an url. Unfortunately this has no effect. The page just show as before, no debug information is visible.

What's missing?

BetaRide
  • 16,207
  • 29
  • 99
  • 177

1 Answers1

0

You are missing a Dojo plugin. More detailed information about debugging you can see via following the link.

"The browser mode adds an interactive page that display objects from the Value Stack (it requires the Dojo Plugin)"

Roman C
  • 49,761
  • 33
  • 66
  • 176
  • Ok I managed to add the dojo plugin, also the provided link states that it's deprecated (I'm using struts 2.3.1.2). Anyway, adding the plugin has no effect. – BetaRide Apr 15 '14 at 06:29
  • If this is a versioning problem then refer to the version where it was working. – Roman C Apr 15 '14 at 08:31