Jersey is a popular framework for building RESTful web services on the JVM. At ClassPass, we make heavy use of Dropwizard, which is a web framework based on Jersey. With Jersey, requests are processed synchronously by default. In particular, each request is handled by a single thread, where the thread…