Я следовал инструкциям здесь для реализации перехватчика обработчика Spring MVC с использованием аннотаций и переопределения DefaultAnnotationHandlerMapping.
Однако мой Перехватчик никогда не вызывается.
МожетКто-нибудь видит, что я делаю здесь не так?
Я реализовал @Interceptors, как в сообщении в блоге.
Я создал один Перехватчик:
@Component
public class InterceptorSpike extends HandlerInterceptorAdapter {
public InterceptorSpike() {
System.err.println("InterceptorSpike initialised");
}
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
throw new RuntimeException("Yay, intercepted!");
}
}
Итестовый контроллер:
@Controller
@Interceptors({InterceptorSpike.class})
public class TestController {
@RequestMapping(value = "/test", method = RequestMethod.GET)
public void doSomething() {
System.err.println("I'm doing something, have I been intercepted??");
}
}
Образец моего обработчика (в основном такой же, как в блоге)
@Component
public class HandlerInterceptorAnnotationAwareHandlerMapping extends DefaultAnnotationHandlerMapping {
public HandlerInterceptorAnnotationAwareHandlerMapping() {
System.err.println("HandlerInterceptorAnnotationAwareHandlerMapping initialised");
}
...
[EDIT - игнорировать, оставлено для полноты.Я снова отменил эти шаги, чтобы снова использовать автопроводку.] Изначально я выполнил автоподключение с помощью @Component, но переместил его в контекст приложения, поскольку пытался исправить различные ошибки.
Я добавил порядок и не использую <mvc:annotation-driven/>
.Они были предложены в некоторых сообщениях, пока я искал решения.[/ EDIT]
<?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.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"
default-autowire="byName">
<context:component-scan base-package="com.xxx"/>
<context:spring-configured/>
<!-- removed manual wiring -->
</beans>
И, наконец, вот мой тест:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"/test-app-context.xml"})
public class ControllerInterceptorTest {
@Autowired
private ApplicationContext applicationContext;
@Autowired
private TestController controller;
@Test
public void shouldInterceptMethod() {
Map<String, DefaultAnnotationHandlerMapping> mappings = applicationContext.getBeansOfType(DefaultAnnotationHandlerMapping.class);
for (String key : mappings.keySet()) {
DefaultAnnotationHandlerMapping mapping = mappings.get(key);
System.out.println(String.format("key [%s], order [%s], value = %s", key, mapping.getOrder(), mapping.getClass().getCanonicalName()));
}
controller.doSomething();
fail("should have thrown exception");
}
}
Я получаю этот вывод:
HandlerInterceptorAnnotationAwareHandlerMapping initialised
InterceptorSpike initialised
key [handlerInterceptorAnnotationAwareHandlerMapping], order [2147483647], value = com.xxx.interceptors.HandlerInterceptorAnnotationAwareHandlerMapping
I'm doing something, have I been intercepted??
java.lang.AssertionError: should have thrown exception
at org.junit.Assert.fail(Assert.java:91)
...
getHandlerExecutionChain на моем новомDefaultAnnotationHandlerMapping никогда не вызывается.
Спасибо, что прочитали это далеко - я знаю, что здесь много всего!
Кто-нибудь может увидеть, что я пропустил или сделал неправильно?
Спасибо!