受this answer的启发,我尝试执行以下操作
@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);
}
然后使用此界面定义Used repository
@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);
}
上面的缓存适用于findByType
,findByCategory
,findByCategoryAndWizardType_id
对于cacheable
中定义的所有CacheableRepository
方法。似乎CacheConfig
上的SomeObjectRepo
注释不会影响CacheableRepository
。
为什么注释不起作用?是否有解决方法使这个结构工作?
谢谢, 橡木
答案 0 :(得分:2)
我建议你在spring数据项目中创建一个问题来请求该功能。