6
私はAngularJSプロジェクトにSpring MVCを使用しています。Spring MVCが特定のURLのjspにリダイレクト
「/ rest/*」という接頭辞が付いたURLからJSONを提供しています。すべてのjspファイルには直接アクセスし、ルーティングはangular-jを使用して処理されます。
jspファイルにアクセスする前にカスタム検証を行う必要があります。残りのURL( "/ rest/*"という接頭辞が付いたURL)の場合、私はすでにフィルタを用意しています。
spring controllerによって検証が行われると、すべてのjspファイルにアクセスするようにディスパッチャサーブレットを設定するにはどうすればよいですか。あなたは常にあなたのディスパッチャサーブレットに複数のURLをマッピングすることができ
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>