中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何整合工廠設計模式來應用Annotation操作

發布時間:2021-10-13 11:26:23 來源:億速云 閱讀:134 作者:iii 欄目:編程語言

本篇內容介紹了“如何整合工廠設計模式來應用Annotation操作”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

現在已經清楚了Annotation的整體作用,但是Annotation到底在開發中能做哪些事情呢?為了進一步理解Annotation的處理目的,下面將結合工廠設計模式來應用Annotation操作。

import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;public class JavaAPIDemo {public static void main(String[] args) throws Exception {//IMessage msg = Factory.getInstance(MessageImpl.class);//msg.send("www.mldn.cn")MessageService messageService=new MessageService();
        messageService.send("www.mldn.cn");
    }
}@Retention(RetentionPolicy.RUNTIME)@interface UserMessage{public Class <?> clazz();
}@UserMessage(clazz =MessageImpl.class )  //利用Annotation實現了類的使用class MessageService{private IMessage message;public MessageService(){
        UserMessage use=MessageService.class.getAnnotation(UserMessage.class);this.message = (IMessage)Factory.getInstance(use.clazz());  //直接通過Annotation獲取}public void send(String msg){this.msg.send(msg);
    }
}class Factory  {private Factory() {}public static <T> T getInstance(Class<T> clazz){   //直接返回一個實例化對象try {return (T)new MessageProxy().bind(clazz.getDeclaredConstructor().newInstance());
        } catch (Exception e) {
            e.printStackTrace();return null;
        }
    }
}interface IMessage {public void send(String msg);
}class MessageImpl implements IMessage {@Overridepublic void send(String msg) {
        System.out.println("【消息發送】"+msg);
    }
}class NetMessageImpl implements IMessage {@Overridepublic void send(String msg) {
        System.out.println("【網絡消息發送】"+msg);
    }
}class MessageProxy implements InvocationHandler {private Object target;public Object bind(Object target){this.target = target;return Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(), this);
    }public  boolean connect(){
        System.out.println("【代理操作】進行消息發送通道的連接。");return true;
    }public void close() {
        System.out.println("【代理操作】關閉連接通道。");
    }@Overridepublic Object invoke(Object proxy, Method method, Object[] args) throws Throwable {try {if(this.connect()){return method.invoke(this.target, args);
            }else {throw new Exception("【ERROR】消息無法進行發送!");
            }      
        }finally {this.close();
        }
    }
}

執行結果:
如何整合工廠設計模式來應用Annotation操作
更換

@UserMessage(clazz =NetMessageImpl.class )

“如何整合工廠設計模式來應用Annotation操作”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

缙云县| 盐池县| 连山| 仙游县| 长沙市| 永泰县| 乐清市| 枣强县| 错那县| 将乐县| 镇原县| 陈巴尔虎旗| 鸡泽县| 万源市| 兴和县| 福鼎市| 申扎县| 马公市| 晋中市| 伊川县| 江北区| 芜湖县| 邛崃市| 民乐县| 长阳| 天峻县| 富顺县| 习水县| 利川市| 忻城县| 长汀县| 肇东市| 石首市| 永嘉县| 梁河县| 越西县| 瑞金市| 新晃| 杭州市| 竹北市| 德钦县|