Skip to content

Instantly share code, notes, and snippets.

@keesun
Created April 16, 2012 15:53
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 keesun/2399617 to your computer and use it in GitHub Desktop.
Save keesun/2399617 to your computer and use it in GitHub Desktop.
Mvc namespace based configuration
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
<mvc:annotation-driven/>
<mvc:default-servlet-handler />
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment