Hi wicket devs, usually when I'm trying to fix a bug in a Wicket application (or other Java servlet applications), I've the information of the pages where the error occurs and I've to find which Page/Component implements that page. When the application gets bigger, finding where the logic for a page is implemented requires a lot of search in different parts of the application.
I was wondering if exists a wicket servlet/filter that could give information about: - Which class implements the page - Which components are rendered for a page Something like: http://localhost:8080/wicketinfo?page=/mypage /mypage is implemented by com.myapp.bla.MyPage And is composed by: - com.myapp.bla.components.XComponent ... Is there something like this in Wicket? I'm asking in the dev list, because if there is nothing like this I think that could be good to develop it, at least it will save me a lot of search during bugfixing. Any clues on where to look to develop something like this? Thanks, Diego
