是否可以定义通用接口并使用Spring @CacheConfig?

oak*_*oak 5 java spring spring-data-jpa spring-data-redis spring-cache

受到这个答案的启发,我尝试执行以下操作

@NoRepositoryBean
public interface CacheableRepository<T, ID extends Serializable>
    extends JpaRepository<T, ID>, JpaSpecificationExecutor<T>,       PagingAndSortingRepository<T, ID> {

    @Cacheable()
    T findOne(ID id);

    @Cacheable()
    List<T> findAll();

   @Cacheable()
   Page<T> findAll(Pageable pageable);

   @CacheEvict(allEntries = true)
   <S extends T> S save(S entity);

   @CacheEvict(allEntries = true)
   void delete(ID id);

}
Run Code Online (Sandbox Code Playgroud)

然后使用这个接口来定义Used存储库

 @CacheConfig(cacheNames={"uniqueCache"})
 public interface SomeObjectRepo extends    CacheableRepository<SomeObject, Long>  {

     @Cacheable(key = "someobject+#p0")
     List<SomeObject> findByType(Integer type);

    @Cacheable(key = "someobject+#p0")
    List<SomeObject> findByCategory(String field);

    @Cacheable(key="someobject+#p0.concat(#p1)")
    List<SomeObject> findByCategoryAndWizardType_id(String field,Integer id);

 }
Run Code Online (Sandbox Code Playgroud)

作品:

上面的缓存适用于findByType, findByCategory,findByCategoryAndWizardType_id

不起作用:

cacheable对于在 处定义的所有方法CacheableRepository。看来CacheConfig注释对SomeObjectRepo没有影响CacheableRepository

我的问题:

为什么注释不起作用?有没有解决方法可以让这个结构发挥作用?

谢谢,橡树

Ste*_*oll 3

是的,这就是奥利和我在尝试支持这种场景时发现的情况。

我建议您在 spring 数据项目中创建一个问题来请求该功能。