溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

springboot緩存的使用實(shí)踐

發(fā)布時(shí)間:2020-09-26 07:49:54 來源:腳本之家 閱讀:164 作者:luckyxl029 欄目:編程語言

spring針對各種緩存實(shí)現(xiàn),抽象出了CacheManager接口,用戶使用該接口處理緩存,而無需關(guān)心底層實(shí)現(xiàn)。并且也可以方便的更改緩存的具體實(shí)現(xiàn),而不用修改業(yè)務(wù)代碼。下面對于在springboot中使用緩存做一簡單介紹:

1、添加依賴

<dependency> 
  <groupId>org.springframework.boot</groupId> 
  <artifactId>spring-boot-starter-cache</artifactId> 
</dependency> 

2、在配置類里開啟緩存,如下圖所示:

springboot緩存的使用實(shí)踐

3、在需要使用緩存的方法上加上注解,如下:

@Override 
  //@CachePut 該注解會將方法的返回值緩存起來,其中緩存名字是 people,數(shù)據(jù)的key是person的id 
  @CachePut(value = "people", key = "#person.id") 
  public Person save(Person person) { 
    Person p = personRepository.save(person); 
    System.out.println("為id、key為:"+p.getId()+"數(shù)據(jù)做了緩存"); 
    return p; 
  } 
@Override 
  //@CacheEvict 該注解會刪除people緩存中key為id 的數(shù)據(jù) 
  @CacheEvict(value = "people", key = "#id") 
  public void remove(Long id) { 
    System.out.println("刪除了id、key為"+id+"的數(shù)據(jù)緩存"); 
    //這里不做實(shí)際刪除操作 
  }
@Override 
  //@Cacheable 該注解會在方法執(zhí)行時(shí),判斷緩存people中key為#person.id 
的緩存是否存在,如果存在,則直接返回緩存中的數(shù)據(jù)。如果不存在,則會查數(shù)據(jù)庫,然后將返回結(jié)果緩存起來。 
  @Cacheable(value = "people", key = "#person.id") 
  public Person findOne(Person person) { 
    Person p = personRepository.findOne(person.getId()); 
    System.out.println("為id、key為:"+p.getId()+"數(shù)據(jù)做了緩存"); 
    return p; 
  }

以上幾部就完成了緩存,但是現(xiàn)在的緩存是默認(rèn)的基于內(nèi)存的,沒有實(shí)現(xiàn)持久化。下面以redis作為緩存的具體實(shí)現(xiàn),如下:

4、添加依賴

<dependency> 
  <groupId>org.springframework.boot</groupId> 
  <artifactId>spring-boot-starter-redis</artifactId> 
</dependency> 

5、在配置文件里添加redis配置

redis.hostname=localhost 
redis.port=6379 

6、在spring容器中配置redis

@Configuration 
public class RedisConfig extends CachingConfigurerSupport{ 
  private static final Logger logger = LoggerFactory.getLogger(RedisConfig.class); 
 
  @Autowired 
  private Environment env; 
 
  @Bean 
  public JedisConnectionFactory redisConnectionFactory() { 
    JedisConnectionFactory redisConnectionFactory = new JedisConnectionFactory(); 
    redisConnectionFactory.setHostName(env.getProperty("redis.hostname")); 
    redisConnectionFactory.setPort(Integer.parseInt(env.getProperty("redis.port"))); 
    return redisConnectionFactory; 
  } 
 
  @Bean 
  public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory cf) { 
    RedisTemplate<String, String> redisTemplate = new RedisTemplate<>(); 
    redisTemplate.setConnectionFactory(cf); 
    return redisTemplate; 
  } 
 
  @Bean 
  public CacheManager cacheManager(RedisTemplate<?, ?> redisTemplate) { 
    RedisCacheManager cacheManager = new RedisCacheManager(redisTemplate); 
    cacheManager.setDefaultExpiration(600); 
    return cacheManager; 
  } 
   
} 

ok,完成了,其他什么都不用改,是不是很方便?

另外,要緩存的類必須序列化。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI