gpt4 book ai didi

java - 在 Spring 中使用 @Cacheable 作为非参数方法

转载 作者:行者123 更新时间:2023-12-03 23:09:01 25 4
gpt4 key购买 nike

我在使用 Spring 缓存 API 时遇到了一个问题:我有一个带有 CRUD 操作的 Dao 类,我想做的就是缓存一个无参数方法,该方法返回一个对象映射(键 - id,值 - 实体)

class Dao implements IDao<Entity>{

public Map<Integer, Entity> getAllEntities(){ /* retreiving from DB */ }

public Entity getEntityByKey(Object key) { ... }

public void insert(Entity entity){...}

public void update(Entity entity){...}

public void delete(Entity entity){...}

}

谁能告诉我如何准确(正确)缓存 getAllEntities() 方法以获取实体,缓存 getEntityByKey 以按键获取实体,以及如何在执行创建、更新或删除操作时更新缓存?更新后是否可以使用方法 getAllEntities 的可缓存版本(使用操作插入、更新、删除)?

最佳答案

试试这个

class Dao implements IDao<Entity>{

@Cacheable(value = "entity.all")
public Map<Integer, Entity> getAllEntities(){ /* retreiving from DB */ }

@Cacheable(value = "entity.item", key="#p0")
public Entity getEntityByKey(Object key) { ... }

@CacheEvict(value = {"entity.all", "entity.item"}, allEntries=true)
public void insert(Entity entity){...}

@CacheEvict(value = {"entity.all", "entity.item"}, allEntries=true)
public void update(Entity entity){...}

@CacheEvict(value = {"entity.all", "entity.item"}, allEntries=true)
public void delete(Entity entity){...}

}

关于java - 在 Spring 中使用 @Cacheable 作为非参数方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11389889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com