Spring 3.2.0.M1今天发布,支持异步@Controller 方法。我正在尝试在部署为 Jetty 战争的现有 Web 应用程序中使用它。但是,我有几个基本问题。
- 我是否需要 Jetty 8 或者这也应该在 Jetty 7 上运行。
- 是在 Servlet 3.0 API 之上构建的异步支持还是 Spring MVC 已经实现的东西。换句话说,我是否需要一个支持 Servlet 3.0 的容器才能使异步控制器工作。
Spring 3.2.0.M1今天发布,支持异步@Controller 方法。我正在尝试在部署为 Jetty 战争的现有 Web 应用程序中使用它。但是,我有几个基本问题。
On the topic of Jetty, servlet 3.0 support is in Jetty 8. You can not use jetty-7 as it implements only servlet 2.5 support. You can get async behavior in jetty-7 through jetty-continuations but that is not the same api as in servlet 3.0.
So that is 1/2 an answer only, I can't speak to the spring side of things.