溫馨提示×

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

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

如何用AOP注解方式實(shí)現(xiàn)redis分布式搶占鎖

發(fā)布時(shí)間:2021-07-06 10:26:01 來源:億速云 閱讀:336 作者:chen 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“如何用AOP注解方式實(shí)現(xiàn)redis分布式搶占鎖”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何用AOP注解方式實(shí)現(xiàn)redis分布式搶占鎖”吧!

摘要

很多項(xiàng)目中都會(huì)有一些需要做定時(shí)跑批的任務(wù)需求,大多數(shù)是通過spring注解的方式實(shí)現(xiàn)的,但是到了生產(chǎn)環(huán)境,多節(jié)點(diǎn)的部署可能會(huì)造成定時(shí)任務(wù)的多節(jié)點(diǎn)同時(shí)觸發(fā)而可能會(huì)出現(xiàn)臟數(shù)據(jù)。之前的處理方案是通過在字典里配置指定生產(chǎn)節(jié)點(diǎn)處理定時(shí)任務(wù)。雖然此方法也能實(shí)現(xiàn)需求,但總覺得很low,所以自己就通過JAVA的AOP方式利用redis實(shí)現(xiàn)了一套分布式搶占鎖,通過注解的方式解決生產(chǎn)環(huán)境多節(jié)點(diǎn)部署帶來的定時(shí)任務(wù)觸發(fā)。

廢話不多說,直接上代碼--> 1、先自定義一個(gè)注解

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author v_liuwen
 * @date 2018/12/27
 */
@Target({ElementType.METHOD,ElementType.TYPE}) // 作用到類,方法,接口上等
@Retention(RetentionPolicy.RUNTIME) // 在運(yùn)行時(shí)可以獲取
public @interface RedisLock {
}

2、再新建一個(gè)切面類

import org.apache.commons.lang3.StringUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import top.qrainly.bj_demo.job.springtask.scheduleJob.utils.RedisLockUtils;

/**
 * @author v_liuwen
 * @date 2018/12/27
 */
@Aspect
@Component
public class RedisLockAspect {

    private static Logger logger = LoggerFactory.getLogger(RedisLockAspect.class);

    /**
     * 切面 加有 RedisLock 的 service 方法
     */
    @Pointcut("@annotation(redisLock)")
    private void cutMethod(RedisLock redisLock) {
    }

    @Before("cutMethod(redisLock)")
    public void doAccessCheck(JoinPoint point,RedisLock redisLock) throws NoSuchMethodException {
        logger.info("********************************【Before】開始進(jìn)入AOP切入**************************************");
    }

    @After("cutMethod(redisLock)")
    public void after(JoinPoint point,RedisLock redisLock) {
        logger.info("********************************【after】AOP切入完成**************************************");
    }

    @AfterThrowing("cutMethod(redisLock)")
    public void doAfterThrow(RedisLock redisLock) {
        logger.info("AfterThrowing...");
    }


    @Around("cutMethod(redisLock)")
    public void around(ProceedingJoinPoint point,RedisLock redisLock){
        String name = point.getSignature().getName();
        Class<?> classTarget = point.getTarget().getClass();
        System.out.println("--------------------------------------->>>AOP切入 方法名:"+name+"<<<-----------------------------------------------------");
        System.out.println("--------------------------------------->>>AOP切入 類名:"+classTarget.getSimpleName()+"<<<-----------------------------------------------------");
        //獲取redis鎖
        Boolean lock = RedisLockUtils.acquireRedisLock(StringUtils.join(classTarget.getSimpleName(),name), 5);
        if(lock){
            try {
                point.proceed();
            } catch (Throwable throwable) {
               logger.error("AOP 代理執(zhí)行失敗");
            }
        }
    }


}

3、在需求做定時(shí)任務(wù)的方法上添加自定義注解@RedisLock

/**
     * 測(cè)試批處理
     */
    @Override
    @RedisLock
    public void syncTest() {
        try{
            //獲取所有需要同步狀態(tài)的付款單據(jù)
            List<String> allNeedSyncStatusForPayment = batchDAO.getAllNeedSyncStatusForPayment();
            SimpleDateFormat sdf = new SimpleDateFormat();
            System.out.println("*****************************************"+sdf.format(new Date())+"開始***********************************************");
            System.out.println(JSON.toJSONString(allNeedSyncStatusForPayment));
            System.out.println("*****************************************"+sdf.format(new Date())+"結(jié)束***********************************************");
        }catch (Exception e){
            logger.error(e.getMessage());
        }
    }

4、注意事項(xiàng): 4.1 注解不要放在service層 反射代理會(huì)繞過spring注解

補(bǔ)充RedisLockUtils

/**
 * @author v_liuwen
 * @date 2018/12/26
 */
public class RedisLockUtils {

    /**
     * 日志打印
     */
    private static Logger logger = LoggerFactory.getLogger(RedisLockUtils.class);

    private static Jedis jedis;

    /**
     * 獲取jedis
     *
     * @return
     */
    public static Jedis getJedis() {
        Jedis jedis = SpringContextHolder.getBean(JedisUtils.class).getResource();
        return jedis;

    }
    /**
     * 釋放jedis
     *
     * @return
     */
    public static void releaseJedis(Jedis jedis) {
        jedis.close();
    }

    /**
     * 搶占執(zhí)行權(quán) 鎖
     * @param lockName
     * @param lockExpire
     * @return
     */
    public static Boolean acquireRedisLock(String lockName,int lockExpire){
        Jedis jedis = getJedis();
        String identifier = UUID.randomUUID().toString();
        String lockKey = lockName;
        try{
            if (jedis.setnx(lockKey, identifier) == 1) {
                logger.info("Get lock {} success:{}.",lockName,identifier);
                jedis.expire(lockKey,lockExpire);
                if (jedis.ttl(lockKey) == -1) {
                    jedis.expire(lockKey, lockExpire);
                }
                return true;
            }
            return false;
        }catch (Exception e){
            logger.error(e.getMessage());
            return false;
        }finally {
            if(jedis !=null){
                releaseJedis(jedis);
            }
        }
    }
}

到此,相信大家對(duì)“如何用AOP注解方式實(shí)現(xiàn)redis分布式搶占鎖”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

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

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

AI