23 lines
883 B
XML
23 lines
883 B
XML
<?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"/>
|
|
|
|
<!-- 拦截器 -->
|
|
<mvc:interceptors>
|
|
<!-- 获取登录信息 -->
|
|
<mvc:interceptor>
|
|
<mvc:mapping path="/manage/**"/>
|
|
<bean class="com.zheng.upms.server.interceptor.UpmsLoginInterceptor"></bean>
|
|
</mvc:interceptor>
|
|
</mvc:interceptors>
|
|
|
|
</beans> |