| 1234567891011121314151617181920212223 |
- <?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.xsd">
- <!-- 根目录'/'对应页面 -->
- <mvc:view-controller path="/" view-name="/index.jsp"/>
- <!-- 拦截器 -->
- <mvc:interceptors>
- <!-- 获取登录信息 -->
- <mvc:interceptor>
- <mvc:mapping path="/manage/**"/>
- <bean class="com.zheng.upms.server.interceptor.UpmsInterceptor"></bean>
- </mvc:interceptor>
- </mvc:interceptors>
- </beans>
|