我正在研究弹簧数据休息服务&面对自定义拦截器中的一些问题。之前我使用过spring-data-rest-webmvc 2.2.0&以下列方式添加了拦截器。
public RequestMappingHandlerMapping repositoryExporterHandlerMapping() {
RequestMappingHandlerMapping mapping = super
.repositoryExporterHandlerMapping();
mapping.setInterceptors(new Object[] { new MyInterceptor() });
return mapping;
}
它对我来说非常好。但是当我升级到spring-data-rest-webmvc 2.3.0版本时,我注意到handlerMapping隐藏在DelegatingHandlerMapping之后。因此我尝试以下列方式添加拦截器。
在我的一个配置类中,我扩展了RepositoryRestMvcConfiguration类&覆盖它的方法。
public class AppConfig extends RepositoryRestMvcConfiguration {
@Autowired ApplicationContext applicationContext;
@Override
public DelegatingHandlerMapping restHandlerMapping()
{
RepositoryRestHandlerMapping repositoryMapping = new RepositoryRestHandlerMapping(super.resourceMappings(), super.config());
repositoryMapping.setInterceptors(new Object[] { new MyInterceptor()});
repositoryMapping.setJpaHelper(super.jpaHelper());
repositoryMapping.setApplicationContext(applicationContext);
repositoryMapping.afterPropertiesSet();
BasePathAwareHandlerMapping basePathMapping = new BasePathAwareHandlerMapping(super.config());
basePathMapping.setApplicationContext(applicationContext);
basePathMapping.afterPropertiesSet();
List<HandlerMapping> mappings = new ArrayList<HandlerMapping>();
mappings.add(basePathMapping);
mappings.add(repositoryMapping);
return new DelegatingHandlerMapping(mappings);
}
}
但是在添加了一些我的存储库操作(对存储库的findAll()操作)之后开始失败。如果我删除了这个拦截器,那些操作工作正常。 (在这个拦截器中我只是验证用户。) 因此我无法理解这里的问题。我是以错误的方式添加拦截器吗?有没有其他方法来添加拦截器?
答案 0 :(得分:12)
你不应该使用repositoryMapping.setInterceptors()
- 它会使Spring放置在那里的内部拦截器,这可能是某些方法停止工作的原因。
我建议您覆盖jpaHelper()
方法并将拦截器放入JpaHelper
中的RepositoryRestMvcConfiguration
对象中。 Spring将把它们放到全局拦截器列表中。
但是,如果您只需要身份验证,那么为什么不使用Spring Security过滤器?
编辑:上述解决方案仅适用于RepositoryRestHandlerMapping
,不适用于BasePathAwareHandlerMapping
。
我建议您在某处声明自定义MappedInterceptor
bean:
@Bean
public MappedInterceptor myMappedInterceptor() {
return new MappedInterceptor(new String[]{"/**"}, new MyInterceptor());
}
根据我对源代码的理解,Spring应该自动将这个拦截器添加到所有请求处理程序。