I am trying to migrate my app's web.xml to Java based configuration. We are using spring 4.1, Java 7, Servlet 3.1, Tomcat 8 and Eclipse Luna. The web service framework is Jersey 2.14.
I used mainly the following guide: http://www.robinhowlett.com/blog/2013/02/13/spring-app-migration-from-xml-to-java-based-config/
I have created WebApplicationInitializer that follows the web.xml configuration, deleted the web.xml, configured Maven not to look for web.xml and did mvn clean install successfuly.
When i try to start tomcat i get the following error:
'Publishing to Tomcat v8.o Server at localhost...' has encountered a problem. Resource '/sb-server/target/m2e-wtp/web-resources/WEB-INF/web.xml' does not exist.
I have tried to clean tomcat directory but it didn't help and it looks like i have missed something since AFAIK Tomcat 8 should be Java-Based-Configuration-Friendly.
Did i miss a step in the migration?
former web.xml (that worked as expected):
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0">
<context-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
com.sb.configuration.ServerConfiguration
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>
org.glassfish.jersey.servlet.ServletContainer
</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.sb.configuration.RestJaxRsApplication</param-value>
</init-param>
<init-param>
<param-name>jersey.config.server.tracing.type</param-name>
<param-value>ALL</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
The WebApplicationInitializerImplemenatation:
@Order(Ordered.HIGHEST_PRECEDENCE)
public class WebAppInitializer implements WebApplicationInitializer {
@Override
public void onStartup(final ServletContext container) throws ServletException {
// Set up application context
final AnnotationConfigWebApplicationContext appContext = new AnnotationConfigWebApplicationContext();
appContext.register(ServerConfiguration.class);
container.addListener(new ContextLoaderListener(appContext));
// Register listeners
container.addListener(ContextLoaderListener.class);
// Jersey Servlet configuration
final ServletRegistration.Dynamic dispatcher =
container.addServlet("Jersey REST Service", ServletContainer.class);
dispatcher.setInitParameter("javax.ws.rs.Application", "com.sb.configuration.RestJaxRsApplication");
dispatcher.setInitParameter("jersey.config.server.tracing.type", "ALL");
dispatcher.setLoadOnStartup(1);
dispatcher.addMapping("/api/*");
// Filters
final Dynamic filterRegistration = container.addFilter("springSecurityFilterChain", DelegatingFilterProxy.class);
filterRegistration.addMappingForUrlPatterns(null, false, "/*");
}
}