我知道如何在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
}
}
最佳答案
沿着以下路线 –
原文链接:https://www.f2er.com/spring/432495.htmlServletRegistration.Dynamic registration = container.addServlet(servletName,myServlet);
registration.setAsyncSupported(true);
编辑:
对不起,没有意识到您正在寻找一个特定于Spring的解决方案.使用Spring MVC,您只需扩展一个AbstractAnnotationConfigDispatcherServletInitializer
,假设您的根和Web上下文是@Configuration.此初始化程序依次从AbstractDispatcherServletInitializer扩展,此类默认设置了asyncSupported标志.