springMVC-servlet.xml 882 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:mvc="http://www.springframework.org/schema/mvc"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/mvc
  9. http://www.springframework.org/schema/mvc/spring-mvc.xsd">
  10. <!-- 根目录'/'对应页面 -->
  11. <mvc:view-controller path="/" view-name="/index.jsp"/>
  12. <!-- 拦截器 -->
  13. <mvc:interceptors>
  14. <!-- 获取登录信息 -->
  15. <mvc:interceptor>
  16. <mvc:mapping path="/manage/**"/>
  17. <bean class="com.zheng.upms.server.interceptor.UpmsInterceptor"></bean>
  18. </mvc:interceptor>
  19. </mvc:interceptors>
  20. </beans>