RestServlet.service(Http*,Http*) is final
-----------------------------------------
Key: WINK-267
URL: https://issues.apache.org/jira/browse/WINK-267
Project: Wink
Issue Type: Improvement
Components: Server
Reporter: Jason Dillon
Attachments: 0003-Unfinal-service-Http-Http.patch
I'd like to sub-class RestServlet and override this method to add some logging
context via MDC... but I can't due to it being final:
{code}
@Override
protected final void service(HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) throws
ServletException,
IOException {
getRequestProcessor().handleRequest(httpServletRequest,
httpServletResponse);
}
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.