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

溫馨提示×

溫馨提示×

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

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

觀察者模式+AOP 代碼示例

發布時間:2020-06-30 11:07:58 來源:網絡 閱讀:793 作者:乾坤刀 欄目:軟件技術

背景

當經紀人創建客戶時,需要給對應的經紀人增加戰報信息。在代碼層面上,客源的相關類只針對客源數據表操作。而戰報信息包含了多種業務統計數據,客源只是其中統計的部分數據。鑒于兩者相對獨立,且客源的戰報信息會有所修改。因此,采用AOP+觀察者模式構建代碼。

代碼

定義一個注解,用于AOP攔截。

/**
 * 戰報注解
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.PARAMETER})
@Documented
public @interface AchievementAnnotation {

    OperateEnum operate() default OperateEnum.ADD;

    enum OperateEnum{
        ADD,UPDATE,DELETE
    }
}

定義AOP,用戶獲取數據,并轉發給觀察者

/**
 * 戰報AOP
 */
@Aspect
@Component
public class AchievementAop {

    /**
     * 戰報觀察者列表
     */
    private List<AchievementObserver> observerList;

    public AchievementAop() {
        this.observerList = new ArrayList<>();
    }

    public List<AchievementObserver> getObserverList() {
        return observerList;
    }

    public void setObserverList(List<AchievementObserver> observerList) {
        if (null != this.observerList)
            this.observerList.addAll(observerList);
        this.observerList = observerList;
    }

    /**
        *注入客源的觀察者
        */
    @Autowired
    public void setCustomerAchievementObserver(CustomerAchievementObserver customerAchievementObserver) {
        getObserverList().add(customerAchievementObserver);
    }

    @Pointcut("@annotation(com.pretang.cloud.aop.AchievementAnnotation)")
    private void pointCut() {
    }

    @AfterReturning(pointcut = "pointCut()", returning = "retVal")
    public void after(JoinPoint joinPoint, Object retVal) {
        Signature signature = joinPoint.getSignature();
        MethodSignature methodSignature = (MethodSignature) signature;
        Method targetMethod = methodSignature.getMethod();
        AchievementAnnotation annotation = targetMethod.getAnnotation(AchievementAnnotation.class);
        AchievementAnnotation.OperateEnum operateEnum = annotation.operate();
        for (AchievementObserver observer : observerList) {
            if (observer.isSupport(retVal))
                observer.execute(retVal);
        }
    }
}

定義觀察者通用接口

/**
 * 戰報信息觀察者接口
 * @param <T>
 */
public interface AchievementObserver<T> {

    /**
     * 是否支持該對象
     * @param obj
     * @return
     */
    boolean isSupport(Object obj);

    /**
     * 操作業務數據
     * @param t
     * @throws RuntimeException
     */
    void execute(T t) throws RuntimeException;
}

客源觀察者

/**
 * 客源信息的觀察者
 */
@Component
public class CustomerAchievementObserver implements AchievementObserver<CustomerBase> {

    @Autowired
    private CustomerRpcService customerRpcService;

    @Override
    public boolean isSupport(Object obj) {
        return obj instanceof CustomerBase;
    }

    @Override
    public void execute(CustomerBase customerBase) throws RuntimeException {
            // 實際業務處理
        customerRpcService.saveAchievement(customerBase.getAgentUserId(), "ADD_CUSTOMER", customerBase.getId());
    }
}
向AI問一下細節

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

AI

莎车县| 白河县| 涟源市| 临海市| 泰州市| 乌拉特中旗| 托克逊县| 西昌市| 寿光市| 萨迦县| 九江县| 灌南县| 镇原县| 德化县| 台东市| 绍兴县| 札达县| 东乡族自治县| 金乡县| 合水县| 怀安县| 延寿县| 福州市| 新野县| 聂荣县| 措美县| 来宾市| 天峻县| 色达县| 乐至县| 湘乡市| 广昌县| 山西省| 阿克苏市| 泸定县| 宁津县| 安新县| 潞西市| 宁波市| 资中县| 阿拉善左旗|