Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2487 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
3 changed files with 48 additions and 6 deletions
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<beans xmlns="http://www.springframework.org/schema/beans" |
||||
xmlns:mvc="http://www.springframework.org/schema/mvc" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
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.0.xsd"> |
||||
|
||||
<mvc:annotation-driven> |
||||
<mvc:interceptors> |
||||
<bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" /> |
||||
<bean class="org.springframework.web.servlet.i18n.ThemeChangeInterceptor" /> |
||||
</mvc:interceptors> |
||||
</mvc:annotation-driven> |
||||
|
||||
</beans> |
||||
Loading…
Reference in new issue