我知道如何在XML配置中启用异步支持,我通过添加标记
为过滤器和servlet做了这样的事情async-supported>true/async-supported
如何在Java配置文件中执行此操作。我创建了一个WebInit类来实现WebApplicationInitializer并覆盖onStartUp-我该怎么办呢?
public class WebInit implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext container) throws ServletException {
//What to do here, to move from XML to java config
}
}
答案 0 :(得分:4)
沿着以下几行 -
ServletRegistration.Dynamic registration = container.addServlet(servletName, myServlet);
registration.setAsyncSupported(true);
修改强>
对不起,没有意识到您正在寻找一个特定于Spring的解决方案。使用Spring MVC,您只需扩展AbstractAnnotationConfigDispatcherServletInitializer
,假设您的根和Web上下文基于@Configuration
。此初始化程序依次从AbstractDispatcherServletInitializer扩展,此类默认设置了asyncSupported标记。