I have a library that I use as an aspect through Spring to log request data. I am trying to hook it up now to my app. I would like to wrap it around the HttpServerHelper.handle() method but I can't at the minute b/c I am unable to make the HttpServerHelper a Spring managed bean. Its constructor requires a Server that is created from the request. I was wondering if a default constructor and a setter for Server could be added to HttpServerHelper?
I am already extending ServerServlet and could override createServer() to use the same logic except I could get HttpServerHelper from Spring and thus add aspects to the methods. Thanks. -Brandon

