91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

spring?boot如何集成redisson

發布時間:2022-11-03 09:30:00 來源:億速云 閱讀:141 作者:iii 欄目:開發技術

這篇文章主要介紹了spring boot如何集成redisson的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇spring boot如何集成redisson文章都會有所收獲,下面我們一起來看看吧。

集成及注意事項

redisson支持redis環境,單機、集群、哨兵、云等。

這里就講一下集群模式需要注意的地方,redisson啟動會檢測master/slave節點是否正常,一般來說3分片3主3從是沒有什么問題的,但是如果測試環境1分片1主1從或者3主都是啟動不了的。

除了環境需要注意,還有注意兼容有無密碼的情況。

手動注入redisson配置

一般情況下,生產環境都是有密碼的。有密碼的話,建議手動注入redisson配置,不用spring boot來幫你集成,因為可能spring boot識別不了密碼。

@Configuration
public class RedissonConfiguration {
    @Value("${spring.redis.cluster.nodes}")
    private String node;
    @Value("${spring.redis.password:}")
    private String password;
    @Bean
    public RedissonClient redissonClient() {
        Config config = new Config();
        String[] nodes = node.split(",");
        ClusterServersConfig clusterServersConfig = config.useClusterServers();
        for (String nodeAddress : nodes) {
            clusterServersConfig.addNodeAddress(prefixAddress(nodeAddress));
        }
        if (StringUtils.isNotBlank(password)) {
            clusterServersConfig.setPassword(password);
        }
        return Redisson.create(config);
    }
    private String prefixAddress(String address) {
        if (!StringUtils.isBlank(address) && !address.startsWith("redis")) {
            return "redis://" + address;
        }
        return address;
    }
}

上面可以根據自己實際情況調優一些配置。

當然除了密碼需要注意,還有一點就是是否有ssl,目前所在company是用的亞馬遜云,會有ssl

spring boot 兼容 redis 可以在yaml配置里天際: Ssl:true,但對于redisson來說添加前綴就可以啦:

rediss:// + ip:端口或者域名

具體yaml配置

spring:
  redis:
    cluster:
      nodes: rediss://clustercfg.xxx
    password: 'xxx'
    timeout: 30000
    Ssl: true
    lettuce:
      pool:
        max-idle: 100

利用鎖的互斥策略,一開始這樣的

@Scheduled(cron = "${xxx:0 0 */2 * * ?}")
public void createProcess() {
    RLock lock = redisson.getLock(key);
    try {
        if (lock.tryLock()) {
           // 執行運行程序
        } else {
            log.info("createProcess 獲取鎖失敗");
        }
    } catch (Exception e) {
        log.error("xxx", e);
    } finally {
        // 是否有鎖 && 是否當前線程
        if (lock != null && lock.isLocked() && lock.isHeldByCurrentThread()) {
            lock.unlock();
        }
    }
}

咋一看是沒有什么問題的,但是本次重構的定時任務比較多,因此會涉及到很多try catch相同的代碼。

注解方式

解決重復代碼方式之一就是封裝,在就是注解切面,想到注解方式更加靈活

于是

/**
 * Redisson 同步鎖
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface RedissonSyncLock {
    String pref();
    /**
     * 鎖后綴,一般前綴根據業務來定,后綴是具體的場景
     */
    String keyEL();
    /**
     * 等待時長 【需要區分是互斥還是阻塞,互斥默認0就可以】
     */
    int waitSec() default 0;
}

需要一個切面

@Slf4j
@Aspect
@Component
@RequiredArgsConstructor
public class RedissonSyncLockAspect {
    private final Redisson redisson;
    @Around(value = "@annotation(xxx.RedissonSyncLock)")
    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
        MethodSignature signature = (MethodSignature) joinPoint.getSignature();
        RedissonSyncLock redissonSyncLock = signature.getMethod().getAnnotation(RedissonSyncLock.class);
        Object[] args = joinPoint.getArgs();
        String key = SpelUtil.parseSpel(signature.getMethod(), args, redissonSyncLock.keyEL());
        RLock lock = null;
        try {
            if (StringUtils.isNotBlank(key) && !StringUtils.equals(key, "null") 
                lock = redisson.getLock(redissonSyncLock.pref().concat(key));
                if (lock.tryLock(redissonSyncLock.waitSec(), TimeUnit.SECONDS)) {
                    return joinPoint.proceed();
                }
            }
            log.info("RedissonSyncLockAspect 上鎖失敗 {}", key);
        } finally {
            if (lock != null && lock.isLocked() && lock.isHeldByCurrentThread()) {
                lock.unlock();
            }
        }
    }
}

使用方法:

@RedissonSyncLock(pref = KeyConstant.xxx, keyEL = "#bean.accountNo")
private void xxx(Bean bean){
     // 程序執行
}

的確使用起來是比較方便的。

關于“spring boot如何集成redisson”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“spring boot如何集成redisson”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禄丰县| 海阳市| 台前县| 新密市| 西藏| 拉萨市| 崇义县| 扎囊县| 连州市| 伊吾县| 五台县| 原平市| 宜兰市| 葵青区| 阿坝| 嘉义县| 山西省| 扬州市| 林西县| 昌吉市| 德格县| 平昌县| 醴陵市| 临江市| 北辰区| 富川| 竹山县| 白城市| 宝山区| 彰化市| 长宁区| 洪雅县| 武夷山市| 宽甸| 金湖县| 容城县| 江山市| 井冈山市| 麟游县| 墨脱县| 鹿邑县|