2015-11-03 51 views
6

我正在使用Spring MVC for AngularJS項目。Spring MVC重定向到jsp的特定url

我從前綴爲「/ rest/*」的url服務JSON。所有的jsp文件都可以直接訪問,並且使用angular-js來處理路由。

我需要在訪問jsp文件之前進行自定義驗證。對於其他網址(以「/ rest/*」爲前綴的url),我已經有了過濾器。

如何配置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> 

回答

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); 
    } 

}