Skip to content

Instantly share code, notes, and snippets.

@keesun
Created January 12, 2012 23:53
Show Gist options
  • Save keesun/1603897 to your computer and use it in GitHub Desktop.
Save keesun/1603897 to your computer and use it in GitHub Desktop.
Restration of Spring DispatcherServlet with Servlet 3.0's annotation
@WebServlet(urlPatterns = "/spring/*",
initParams = {
@WebInitParam(name = "contextConfigLocation", value = "classpath*:/spring.xml")})
public class SpringServlet extends DispatcherServlet {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment