Is there a reason why this puppy is final?
<snip>
@Override
protected final void service(HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse)
throws ServletException,
IOException {
getRequestProcessor().handleRequest(httpServletRequest,
httpServletResponse);
}
</snip>I'd like to sub-class RestServlet and override this method to add some logging context via MDC... but I can't... poopy :-( --jason
