Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mickknutson/39eb32eb1c7d974d3c354f6dda36ede1 to your computer and use it in GitHub Desktop.
Save mickknutson/39eb32eb1c7d974d3c354f6dda36ede1 to your computer and use it in GitHub Desktop.
public class WebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
...
@Override
protected Class<?>[] getServletConfigClasses() {
return new Class[] { WebMvcConfig.class };
}
...
@Override
public void onStartup(final ServletContext servletContext) throws ServletException {
// Registers DispatcherServlet
super.onStartup(servletContext);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment