by Rajiv MordaniOne of the significant enhancements made inJSR 315: Java Servlet 3.0, is support for asynchronous processing.With this support, a servlet no...
by Rajiv MordaniOne of the significant enhancements made inJSR 315: Java Servlet 3.0, is support for asynchronous processing.With this support, a servlet no longer has to wait for a response from a resource such as a database before its thread can continueprocessing, that is, the thread is not blocked. Previous to Servlet 3.0, asynchronous support in the Java EE web container wasprovided in a proprietary way — either through APIs built on top of the Servlet 2.5 API or through...
by Rajiv MordaniOne of the significant enhancements made inJSR 315: Java Servlet 3.0, is support for asynchronous processing.With this support, a servlet no longer has to wait for a response from...