Utility classes, JSP tags, Servlets, and extensions to different external API.
IntroductionDebuggingFilter is a servlet filter that add a "debug.jspInfo" attribute to the current request to be used
... [More]
in jsp pages, for debugging purpose.
SamplesSee how the debug info will look like.
ConfigurationConfigure web.xmlAdd this to your WEB-INF/web.xml file:
debugging
ro.raisercostin.web.DebuggingFilter
debugging
/*
Configure web.xmlAdd this to desired jsp file :
${debug.jspInfo}Configure loggingTo log the request parametes add in log4j.properties file : log4j.logger.ro.raisercostin.web.DebuggingFilter.PARAMETERS=debugTo log the request and header parameters add in log4j.properties file : log4j.logger.ro.raisercostin.web.DebuggingFilter.REQUEST=debugTo log all environment parameters add in log4j.properties file : log4j.logger.ro.raisercostin.web.DebuggingFilter.ALL=debugConfigure maven dependenciesAdd this to your pom.xml file, inside /project/dependencies/ :
ro.raisercostin
raisercostin-jsp
1.0
Add this to your pom.xml file, inside /project/repositories/ :
raisercostin
raisercostin
http://raisercostin.googlecode.com/svn/maven2 [Less]