Tagged with "configuration"
Tracing Servlet Requests
Tracing through Servlet-based web application log files isn't always as convenient as one may hope. Sure, when using Tomcat, we may rely on the thread names (such ashttp-8080-2
), but sometimes they seem to bleed into each other resulting in a difficult structure to grep
. Compounding this, an ... read more
Suppressing An Appender For A Log4J Logger
Occasionally, a third-party library will balk the log-or-throw exception handling convention. Most recently, I came across this issue with Hibernate's Work API: anorg.hibernate.exception.ConstraintViolationException
was being logged and thrown when a unique key constraint was violated. To be exact, Hibernate's JDBCExceptionHelper
logged exceptions through JDBCExceptionReporter
. The flow was similar ... read more