Fix Eclipse compile errors

* Most web.xml servlet API versions updated to 3.0 for ASYNC support
* httpsession-xml is left at 2.5 to ensure compatability & remove ASYNC
* Remove @Override on interface override
This commit is contained in:
Rob Winch
2016-04-01 11:56:27 -05:00
parent f8f6ee20c0
commit 5bde226ecc
5 changed files with 6 additions and 8 deletions

View File

@@ -24,7 +24,6 @@ import org.springframework.web.WebApplicationInitializer;
public class H2ConsoleInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.addServlet("h2console", new WebServlet()).addMapping("/console/*");
}