Async processing of requests in Java webapp
问题 I need to write a web application which receives a lot of HTTP requests and takes a long time (30s to 2min) to process each request (in turn making other network requests) before returning a response. Because there would be a lot of requests coming in and those connections are held open I'm thinking of going down an event driven route, which leads me to think Netty is appropriate. If each request takes a long time to process, is that going to block netty's processing? Or can I receive a