我想在 findOne 方法中添加“Cacheable”注释,并在删除或发生方法发生时驱逐缓存。
我怎样才能做到这一点 ?
virsir,如果您使用 Spring Data JPA(仅使用接口),还有另一种方法。这是我所做的,用于类似结构化实体的通用 dao:
public interface CachingDao<T, ID extends Serializable> extends JpaRepository<T, ID>, JpaSpecificationExecutor<T> {
@Cacheable(value = "myCache")
T findOne(ID id);
@Cacheable(value = "myCache")
List<T> findAll();
@Cacheable(value = "myCache")
Page<T> findAll(Pageable pageable);
....
@CacheEvict(value = "myCache", allEntries = true)
<S extends T> S save(S entity);
....
@CacheEvict(value = "myCache", allEntries = true)
void delete(ID id);
}
我认为基本上@seven 的答案是正确的,但缺少 2 点:
我们不能定义通用接口,恐怕我们必须单独声明每个具体接口,因为注释不能被继承,并且我们需要为每个存储库设置不同的缓存名称。
save
并且delete
应该是CachePut
并且findAll
应该是Cacheable
和CacheEvict
public interface CacheRepository extends CrudRepository<T, String> {
@Cacheable("cacheName")
T findOne(String name);
@Cacheable("cacheName")
@CacheEvict(value = "cacheName", allEntries = true)
Iterable<T> findAll();
@Override
@CachePut("cacheName")
T save(T entity);
@Override
@CacheEvict("cacheName")
void delete(String name);
}
我通过以下方式解决了这个问题,并且工作正常
public interface BookRepositoryCustom {
Book findOne(Long id);
}
public class BookRepositoryImpl extends SimpleJpaRepository<Book,Long> implements BookRepositoryCustom {
@Inject
public BookRepositoryImpl(EntityManager entityManager) {
super(Book.class, entityManager);
}
@Cacheable(value = "books", key = "#id")
public Book findOne(Long id) {
return super.findOne(id);
}
}
public interface BookRepository extends JpaRepository<Book,Long>, BookRepositoryCustom {
}
尝试按照此处的说明提供 MyCRUDRepository(一个接口和一个实现):向所有存储库添加自定义行为。然后您可以覆盖并为这些方法添加注释:
findOne(ID id)
delete(T entity)
delete(Iterable<? extends T> entities)
deleteAll()
delete(ID id)