@Caching & @CacheConfig的使用

@Caching & @CacheConfig

@Caching设置方法的复杂缓存规则

@CacheConfig:抽取类中的所有@CachePut@Cacheable@CacheEvict的公共配置

使用案例如下:

@Service
@CacheConfig(cacheNames = "emp")
public class EmployeeService {



@Caching(
  cacheable = {
    @Cacheable(/*value = "emp",*/ key = "#lastName")
  },
  put = {
  //Put一定是在执行方法之后调用,只要一个方法标了@CachePut,那么每次执行查		    询都会直接去查数据库,然后再将结果插入到缓存中,但是下次在用id查询的时候就不需要查询数据库了,直接从缓存中lookup->get(key)
    @CachePut(/*value = "emp",*/ key = "#result.id"),
    @CachePut(/*value = "emp",*/ key = "#result.email")
  }
)
  public Employee getByLastName(String lastName) {
    Employee byLastName = employeeMapper.getByLastName(lastName);
    System.out.println("查询员工: "+lastName);
    return byLastName;
  }

你可能感兴趣的:(Springboot)