我正在为AngularJS项目使用Spring MVC。
我从前缀为" / rest / *&#34的网址提供JSON; 。直接访问所有jsp文件,并使用angular-js处理路由。
我需要在访问jsp文件之前进行自定义验证。对于其他网址(以&#34为前缀的网址; / rest / *"),我已经有了过滤器。
如何配置dispatcher-servlet,以便在弹簧控制器完成验证后访问所有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>
答案 0 :(得分:6)
您始终可以将多个网址映射到您的调度程序servlet。
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/rest/*</url-pattern>
<url-pattern>/non-rest/*</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:spring-config/dispatcher-servlet.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
用于验证 您可以为不同的url模式配置mvc拦截器。例如。
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<bean id="localeChangeInterceptor"
class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
<property name="paramName" value="j_lang" />
</bean>
</mvc:interceptor>
</mvc:interceptors>
为角度资源配置一个通用控制器:
@Controller
@RequestMapping("/ng")
public class AngularResourcesController {
@RequestMapping(value = "/**", method = RequestMethod.GET)
public ModelAndView process(HttpServletRequest request) {
String pageName = null;
//create your custom jsp URL, modify accordingly to your jsp location.
pageName =request.getRequestURL().toString();
//forward to internal jsp.
return new ModelAndView(pageName);
}
}