java - ThreadPoolExecutor.run and Servlet re-initialization -
this link says earlier versions of tomcat (before 7.0.54) "renews threads" thru threadpoolexecutor.run().
why doesn't init() method of contained servlets seem called again?
a servlet initialized once, either @ web application startup or upon first use.
the same instance used serve incoming requests, if necessary multiple requests @ same time (unless use deprecated option synchronize access, there single instance, , queue of requests it).
Comments
Post a Comment