Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm considering configuring tomcat (or jetty) to use NIO (non-blocking IO) for several, of my apps using Spring/Hibernate, to improve performance.

I am still unsure right now how NIO works, but my assumption is that one thread can service multiple requests concurrently, or something along those lines.

My initial worry though is that Spring/Hibernate relies heavily on ThreadLocals and uses the "current thread" to identify the current session, etc...so will NIO be a problem with Spring & Hibernate or am I totally off the mark?

share|improve this question
If Spring and/or Hibernate really use ThreadLocals and the current thread to identify the current session then clearly you cannot use a strategy like NIO to economize on threads. – EJP Feb 13 at 9:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.