溫馨提示×

溫馨提示×

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

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

springboot集成redis的使用注解有哪些

發(fā)布時(shí)間:2022-03-04 13:46:01 來源:億速云 閱讀:678 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)springboot集成redis的使用注解有哪些的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

    redis簡介:

    Redis是當(dāng)前比較熱門的NOSQL系統(tǒng)之一,它是一個(gè)開源的使用ANSI c語言編寫的key-value存儲(chǔ)系統(tǒng)
    (區(qū)別于MySQL的二維表格的形式存儲(chǔ)。)。和Memcache類似,但很大程度補(bǔ)償了Memcache的不
    足。和Memcache一樣,Redis數(shù)據(jù)都是緩存在計(jì)算機(jī)內(nèi)存中,不同的是,Memcache只能將數(shù)據(jù)緩存到
    內(nèi)存中,無法自動(dòng)定期寫入硬盤,這就表示,一斷電或重啟,內(nèi)存清空,數(shù)據(jù)丟失。所以Memcache的
    應(yīng)用場景適用于緩存無需持久化的數(shù)據(jù)。而Redis不同的是它會(huì)周期性的把更新的數(shù)據(jù)寫入磁盤或者把修
    改操作寫入追加的記錄文件,實(shí)現(xiàn)數(shù)據(jù)的持久化。
    Redis的特點(diǎn):
    1,Redis讀取的速度是110000次/s,寫的速度是81000次/s;
    2,原子 。Redis的所有操作都是原子性的,同時(shí)Redis還支持對幾個(gè)操作全并后的原子性執(zhí)行。
    3,支持多種數(shù)據(jù)結(jié)構(gòu):string(字符串);list(列表);hash(哈希),set(集合);zset(有序集合)
    4,持久化,集群部署
    5,支持過期時(shí)間,支持事務(wù),消息訂閱

    引入依賴:

    <!-- redis -->
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    <!-- spring2.X集成redis所需common-pool2-->
    <dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
    <version>2.6.0</version>
    </dependency>

    編寫application.properties文件

    #redi配置
    spring.redis.host=ip地址
    spring.redis.port=端口號(hào)
    spring.redis.database=0
    spring.redis.password=密碼
    spring.redis.lettuce.pool.max-active=20
    spring.redis.lettuce.pool.max-wait=1
    #最大阻塞等待時(shí)間(負(fù)數(shù)表示沒有限制)
    spring.redis.lettuce.pool.max-idle=5
    spring.redis.lettuce.pool.min-idle=0
    # 關(guān)閉超時(shí)時(shí)間
    spring.redis.lettuce.shutdown-timeout=100

    編寫配置類:

    @EnableCaching
    @Configuration
    public class RedisConfig extends CachingConfigurerSupport {
    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory
    factory) {
    RedisTemplate<String, Object> template = new RedisTemplate<>();
    RedisSerializer<String> redisSerializer = new StringRedisSerializer();
    Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new
    Jackson2JsonRedisSerializer(Object.class);
    ObjectMapper om = new ObjectMapper();
    om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
    om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
    jackson2JsonRedisSerializer.setObjectMapper(om);
    template.setConnectionFactory(factory);
    //key序列化方式
    template.setKeySerializer(redisSerializer);
    //value序列化
    template.setValueSerializer(jackson2JsonRedisSerializer);
    //value hashmap序列化
    template.setHashValueSerializer(jackson2JsonRedisSerializer);
    return template;
     }
    @Bean
    public CacheManager cacheManager(RedisConnectionFactory factory) {
    RedisSerializer<String> redisSerializer = new StringRedisSerializer();
    Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new
    Jackson2JsonRedisSerializer(Object.class);
    //解決查詢緩存轉(zhuǎn)換異常的問題
    ObjectMapper om = new ObjectMapper();
    om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
    om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
    jackson2JsonRedisSerializer.setObjectMapper(om);
    // 配置序列化(解決亂碼的問題),過期時(shí)間600秒
    RedisCacheConfiguration config =
    RedisCacheConfiguration.defaultCacheConfig()
     .entryTtl(Duration.ofSeconds(600))
     
    .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(redi
    sSerializer))
     
    .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(ja
    ckson2JsonRedisSerializer))
     .disableCachingNullValues();
    RedisCacheManager cacheManager = RedisCacheManager.builder(factory)
     .cacheDefaults(config)
     .build();
    return cacheManager;
     }
    }

    springboot的redis注解介紹

    (1)緩存@Cacheable

    根據(jù)方法對其返回結(jié)果進(jìn)行緩存,下次請求時(shí),如果緩存存在,則直接讀取緩存數(shù)據(jù)返回;如果緩存不存在,則執(zhí)行方法,并把返回的結(jié)果存入緩存中。一般用在查詢方法上。

    查看源碼,屬性值如下:

    springboot集成redis的使用注解有哪些

    (2)緩存@CachePut

    使用該注解標(biāo)志的方法,每次都會(huì)執(zhí)行,并將結(jié)果存入指定的緩存中。其他方法可以直接從響應(yīng)的緩存中讀取緩存數(shù)據(jù),而不需要再去查詢數(shù)據(jù)庫。一般用在新增方法上。

    查看源碼,屬性值如下

    springboot集成redis的使用注解有哪些

    (3)緩存@CacheEvict

    使用該注解標(biāo)志的方法,會(huì)清空指定的緩存。一般用在更新或者刪除方法上查看源碼,屬性值如下

    springboot集成redis的使用注解有哪些

    springboot集成redis的使用注解有哪些

    不能連接redis:
    (1)關(guān)閉liunx防火墻
    (2)找到redis配置文件:
    修改 protected-mode yes  改為  protected-mode no
    注釋掉: bind 127.0.0.1

    測試

    @Cacheable(value = "banner", key = "'selectIndexList'")
    @Override
    public List<CrmBanner> selectIndexList() {
    List<CrmBanner> list = baseMapper.selectList(new
    QueryWrapper<CrmBanner>().orderByDesc("sort"));
    return list;
     }
    
    @CacheEvict(value = "banner", allEntries=true)
    @Override
    public void removeBannerById(String id) {
    baseMapper.deleteById(id);
     }

    redis中:

    springboot集成redis的使用注解有哪些

    基本的功能:

    查詢使用:@Cacheable注解

    修改刪除:使用@CacheEvict注解

    增加:使用@CachePut注解

    感謝各位的閱讀!關(guān)于“springboot集成redis的使用注解有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

    向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