ライブラリ プロジェクト (Spring 3.2.4 を使用) では、複数のインターセプターを定義しています。サーブレット構成 xml ファイルは、Web アプリケーションにインポートされる jar に含まれています。インターセプターは、異なるインターセプターを持つ異なる Dispatcher サーブレットに使用されるため、複数のサーブレット xml で使用されます。
問題は、インターセプターが 2 回呼び出されるのに対し、ハンドラー (コントローラー) は 1 回だけ呼び出されることです。
インターセプターは、ライブラリ プロジェクトで定義されています。
public class SomeInterceptor extends HandlerInterceptorAdapter {
@Override
public void afterCompletion(final HttpServletRequest request, final HttpServletResponse response, final Object handler, final Exception ex) throws Exception {
System.out.println("afterCompletionCalled");
}
@Override
public boolean preHandle(final HttpServletRequest request, final HttpServletResponse response, final Object handler) throws Exception {
System.out.println("preHandle called");
return true;
}
@Override
public void postHandle(final HttpServletRequest request, final HttpServletResponse response, final Object handler, final ModelAndView modelAndView) throws Exception {
}
}
サーブレット構成は jar ファイルで提供され、後でアプリケーションに組み込まれます。
libservletcfg.xml:
<?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: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-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
<context:component-scan base-package="com.example.controller" annotation-config="true" />
<bean id="jacksonMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="jacksonMessageConverter"/>
</list>
</property>
</bean>
<mvc:annotation-driven />
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<bean class="com.example.SomeInterceptor"/>
</mvc:interceptor>
</mvc:interceptors>
</beans>
Web アプリケーションでは、サーブレット構成に libservletcfg.xml を含めるだけです。
サーブレット構成.xml:
<?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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<import resource="classpath*:libservletcfg.xml"/>
<context:component-scan base-package="com.example.app.controller" annotation-config="true" />
</beans>
この servletConfig.xml は、web.xml で Dispatcher サーブレットのコンテキスト構成として使用されます。
<servlet>
<servlet-name>someServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:servletConfig.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>someServlet</servlet-name>
<url-pattern>/someUrl/*</url-pattern>
</servlet-mapping>
インターセプターが 2 回呼び出される理由、または構成に関する問題 (予期しない動作につながる可能性があります) を教えてもらえますか?
編集
コントローラーが 2 回呼び出される例:
@Controller
@RequestMapping(value = "/someUrl")
public class SampleController {
@RequestMapping(method = RequestMethod.POST)
public @ResponseBody SampleResponseBody sampleMethod(@RequestBody final SampleRequestBody pSampleRequestBody) {
final SampleResponseBody response = new SampleResponseBody();
return response;
}
}