Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Wicket and working on an existing project. How do I see the stack trace from Wicket on the UI? Currently I see the following:

Internal error
Return to home page

I have set the following in log4j.xml, but don't see any stack traces in the logs either:

<logger name="org.apache.wicket">
    <level value="DEBUG"/>
</logger>
share|improve this question

3 Answers

up vote 1 down vote accepted
public class MyApplication extends WebApplication {
    @Override
    protected void init() {
        /* ... */

        // Tells wicket to use a helpful 'debug' exception page with a snapshot of the 
        // component model, and the exception stack trace.
        // Other settings are available to show pages that say there has been an internal error 
        // (a production-friendly page)
        // In addition, more advanced usage allows you to override this behavior completely.

        getSettings().setUnexpectedExceptionDisplay(ApplicationSettings.SHOW_EXCEPTION_PAGE);
    }
}
share|improve this answer
2  
Yes, but not in a deployment environment.. Switching to development mode is the better option here. – Tim Jan 12 '11 at 20:21
Touche, I agree. +1 – Dolph Jan 13 '11 at 1:58
<context-param>
 <param-name>configuration</param-name>
 <param-value>development</param-value>
 </context-param>

update web.xml to development instead of deployment

share|improve this answer

In addition, the detail of debugging output is determined by the "configuration" runtime of wicket, see short explanation at http://clipmarks.com/clipmark/B00CE497-A646-4CB6-B85D-F68332903C5A/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.