当收到ajax请求(Accept application/json, text/javascript, */*; q=0.01
)时,我需要调用自己的intercpetor方法。
我将其添加到DefaultAnnotationHandlerMapping
。我的拦截器扩展HandlerInterceptorAdapter
并实现ServletContextAware
,InitializingBean
。我怎么能解决我的问题?
答案 0 :(得分:0)
您必须手动注册拦截器:
<mvc:interceptors>
<bean class="com.example.MyCustomInterceptor"/>
</mvc:interceptors>
另见: