我有一个实现WebApplicationInitializer
@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
由于