Spring MVCコントローラーの最新の非同期機能をテストしようとしていますが、動作させることができませんでした。
これが私の非同期メソッドのコードです:
@RequestMapping(value = "/hello")
public Callable<String> async(final Model model) {
System.out.println("entered async controller method");
return new Callable<String>() {
public String call() throws Exception {
Thread.sleep(2000L);
model.addAttribute("message", "asyncRequest dealt with");
System.out.println("about to return from call()");
return "hello";
}
};
}
web.xmlの関連部分は次のとおりです。
<servlet>
<servlet-name>SpringMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/webmvc-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>
ただし、「call()から戻るところ」がコンソールに出力されることはなく、次のようなログが表示されることもありません。08: 25: 17[MvcAsync1]WebAsyncManager-...コンソールで...
参考までに、Spring3.2.RC2を使用しています