【发布时间】:2016-02-03 08:30:04
【问题描述】:
我正在为 AngularJS 项目使用 Spring MVC。
我从前缀为 "/rest/*" 的 url 提供 JSON。所有的jsp文件都是直接访问的,路由是用angular-js处理的。
我需要在访问 jsp 文件之前进行自定义验证。对于休息网址(以“/rest/*”为前缀的网址),我已经有了过滤器。
如何配置 dispatcher-servlet 以便在 spring 控制器完成验证后访问所有 jsp 文件。
web.xml
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
调度程序-servlet.xml
<?xml version='1.0' encoding='UTF-8' ?>
<!-- was: <?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.gauti" />
<mvc:annotation-driven />
</beans>
【问题讨论】:
标签: spring spring-mvc