正确使用WebApplicationInitializer

时间:2017-11-14 16:00:26

标签: spring-mvc

我有一个实现WebApplicationInitializer

的bean
@Component
public class WebInit implements WebApplicationInitializer{

    public WebInit() {
      ...
    }

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        ...
    }

    private AnnotationConfigWebApplicationContext getContext() {
        ...
    }
}

bean是@Component,并且正在由容器实例化。它的构造函数被调用,但不是onStartup方法。缺少什么?

定义了以下maven依赖项:

org.springframework:spring-web-4.3.12.RELEASE
org.springframework:spring-webmvc-4.3.12.RELEASE
org.springframework:spring-test-4.1.0.RELEASE

由于

0 个答案:

没有答案