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

溫馨提示×

redis宕機如何保證業務正常

小新
644
2021-01-16 09:07:04
欄目: 云計算

redis宕機如何保證業務正常

redis宕機可通過實現Redis緩存切面來保證業務正常,示例代碼:

package com.raymon.hcp.security.aspect;

import com.raymon.hcp.security.annotation.CacheException;

import org.aspectj.lang.ProceedingJoinPoint;

import org.aspectj.lang.Signature;

import org.aspectj.lang.annotation.Around;

import org.aspectj.lang.annotation.Aspect;

import org.aspectj.lang.annotation.Pointcut;

import org.aspectj.lang.reflect.MethodSignature;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

import org.springframework.core.annotation.Order;

import org.springframework.stereotype.Component;

import java.lang.reflect.Method;

/**

* Redis緩存切面,防止Redis宕機影響正常業務邏輯

* Created by zhanglei on 2020/3/17.

*/

@Aspect

@Component

@Order(2)

public class RedisCacheAspect {

private static Logger LOGGER = LoggerFactory.getLogger(RedisCacheAspect.class);

@Pointcut("execution(public * com.raymon.hcp.portal.service.*CacheService.*(..)) || execution(public * com.raymon.hcp.service.*CacheService.*(..))")

public void cacheAspect() {

}

@Around("cacheAspect()")

public Object doAround(ProceedingJoinPoint joinPoint) throws Throwable {

Signature signature = joinPoint.getSignature();

MethodSignature methodSignature = (MethodSignature) signature;

Method method = methodSignature.getMethod();

Object result = null;

try {

result = joinPoint.proceed();

} catch (Throwable throwable) {

//有CacheException注解的方法需要拋出異常

if (method.isAnnotationPresent(CacheException.class)) {

throw throwable;

} else {

LOGGER.error(throwable.getMessage());

}

}

return result;

}

}

0
嘉禾县| 滨州市| 舞钢市| 苗栗县| 会宁县| 南华县| 资兴市| 北川| 新密市| 开远市| 江西省| 澄城县| 泽州县| 清丰县| 永川市| 迭部县| 开鲁县| 宁城县| 朔州市| 方正县| 鄂温| 唐海县| 鄯善县| 刚察县| 澄城县| 自贡市| 西华县| 余姚市| 秀山| 固始县| 太仆寺旗| 广灵县| 岳池县| 壶关县| 扬中市| 门头沟区| 从江县| 调兵山市| 拉孜县| 霍林郭勒市| 新野县|