Java線程安全的單例模式

在看微信支付的SDK時猜欺,看到里面有一個單例模式實現(xiàn)采用了內(nèi)部類的方式,于是查了一下拷窜,發(fā)現(xiàn)這是一種線程安全的單例實現(xiàn)模式开皿,查詢網(wǎng)上資料說,大部分單例都會有多線程環(huán)境下的問題篮昧,使用內(nèi)部類可以避免這個問題赋荆,因為在多線程環(huán)境下,jvm對一個類的初始化會做限制懊昨,同一時間只會允許一個線程去初始化一個類窄潭,這樣就從虛擬機(jī)層面避免了大部分單例實現(xiàn)的問題。

public class WXPayDomainSimpleImpl implements IWXPayDomain {
    private WXPayDomainSimpleImpl(){}
    private static class WxpayDomainHolder{
        private static IWXPayDomain holder = new WXPayDomainSimpleImpl();
    }
    public static IWXPayDomain instance(){
        return WxpayDomainHolder.holder;
    }

    public synchronized void report(final String domain, long elapsedTimeMillis, final Exception ex) {
        DomainStatics info = domainData.get(domain);
        if(info == null){
            info = new DomainStatics(domain);
            domainData.put(domain, info);
        }

        if(ex == null){ //success
            if(info.succCount >= 2){    //continue succ, clear error count
                info.connectTimeoutCount = info.dnsErrorCount = info.otherErrorCount = 0;
            }else{
                ++info.succCount;
            }
        }else if(ex instanceof ConnectTimeoutException){
            info.succCount = info.dnsErrorCount = 0;
            ++info.connectTimeoutCount;
        }else if(ex instanceof UnknownHostException){
            info.succCount = 0;
            ++info.dnsErrorCount;
        }else{
            info.succCount = 0;
            ++info.otherErrorCount;
        }
    }

    public synchronized DomainInfo getDomain(final WXPayConfig config) {
        DomainStatics primaryDomain = domainData.get(WXPayConstants.DOMAIN_API);
        if(primaryDomain == null ||
                primaryDomain.isGood()) {
            return new DomainInfo(WXPayConstants.DOMAIN_API, true);
        }

        long now = System.currentTimeMillis();
        if(switchToAlternateDomainTime == 0){   //first switch
            switchToAlternateDomainTime = now;
            return new DomainInfo(WXPayConstants.DOMAIN_API2, false);
        }else if(now - switchToAlternateDomainTime < MIN_SWITCH_PRIMARY_MSEC){
            DomainStatics alternateDomain = domainData.get(WXPayConstants.DOMAIN_API2);
            if(alternateDomain == null ||
                alternateDomain.isGood() ||
                alternateDomain.badCount() < primaryDomain.badCount()){
                return new DomainInfo(WXPayConstants.DOMAIN_API2, false);
            }else{
                return new DomainInfo(WXPayConstants.DOMAIN_API, true);
            }
        }else{  //force switch back
            switchToAlternateDomainTime = 0;
            primaryDomain.resetCount();
            DomainStatics alternateDomain = domainData.get(WXPayConstants.DOMAIN_API2);
            if(alternateDomain != null)
                alternateDomain.resetCount();
            return new DomainInfo(WXPayConstants.DOMAIN_API, true);
        }
    }

    static class DomainStatics {
        final String domain;
        int succCount = 0;
        int connectTimeoutCount = 0;
        int dnsErrorCount =0;
        int otherErrorCount = 0;

        DomainStatics(String domain) {
            this.domain = domain;
        }
        void resetCount(){
            succCount = connectTimeoutCount = dnsErrorCount = otherErrorCount = 0;
        }
        boolean isGood(){ return connectTimeoutCount <= 2 && dnsErrorCount <= 2; }
        int badCount(){
            return connectTimeoutCount + dnsErrorCount * 5 + otherErrorCount / 4;
        }
    }
    private final int MIN_SWITCH_PRIMARY_MSEC = 3 * 60 * 1000;  //3 minutes
    private long switchToAlternateDomainTime = 0;
    private Map<String, DomainStatics> domainData = new HashMap<String, DomainStatics>();
}

另外還有一種單例的寫法

public class WXPayConfigImpl extends WXPayConfig{

    private byte[] certData;
    private static WXPayConfigImpl INSTANCE;

    private WXPayConfigImpl() throws Exception{
        String certPath = "D://CERT/common/apiclient_cert.p12";
        File file = new File(certPath);
        InputStream certStream = new FileInputStream(file);
        this.certData = new byte[(int) file.length()];
        certStream.read(this.certData);
        certStream.close();
    }

    public static WXPayConfigImpl getInstance() throws Exception{
        if (INSTANCE == null) {
            synchronized (WXPayConfigImpl.class) {
                if (INSTANCE == null) {
                    INSTANCE = new WXPayConfigImpl();
                }
            }
        }
        return INSTANCE;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末酵颁,一起剝皮案震驚了整個濱河市嫉你,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌躏惋,老刑警劉巖幽污,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異簿姨,居然都是意外死亡距误,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進(jìn)店門款熬,熙熙樓的掌柜王于貴愁眉苦臉地迎上來深寥,“玉大人,你說我怎么就攤上這事贤牛。” “怎么了则酝?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵殉簸,是天一觀的道長闰集。 經(jīng)常有香客問我,道長般卑,這世上最難降的妖魔是什么武鲁? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮蝠检,結(jié)果婚禮上沐鼠,老公的妹妹穿的比我還像新娘。我一直安慰自己叹谁,他們只是感情好饲梭,可當(dāng)我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著焰檩,像睡著了一般憔涉。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上析苫,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天兜叨,我揣著相機(jī)與錄音,去河邊找鬼衩侥。 笑死国旷,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的茫死。 我是一名探鬼主播议街,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼璧榄!你這毒婦竟也來了特漩?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤骨杂,失蹤者是張志新(化名)和其女友劉穎涂身,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體搓蚪,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蛤售,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了妒潭。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片悴能。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖雳灾,靈堂內(nèi)的尸體忽然破棺而出漠酿,到底是詐尸還是另有隱情,我是刑警寧澤谎亩,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布炒嘲,位于F島的核電站宇姚,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏夫凸。R本人自食惡果不足惜浑劳,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望夭拌。 院中可真熱鬧魔熏,春花似錦、人聲如沸鸽扁。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽献烦。三九已至滓窍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間巩那,已是汗流浹背吏夯。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓润歉,卻偏偏與公主長得像绷跑,于是被迫代替她去往敵國和親棺聊。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容

  • 原來是對爬山?jīng)]興趣的,因為小時候有陰影。三年級的年級活動桨嫁,去曲阜爬石門山。組織比較混亂份帐,上山以后就各自分散了璃吧。我自...
    關(guān)爾火火閱讀 359評論 0 0
  • 喜歡你 需要巨大的勇氣 就像是陸地上的喜歡天空上的一樣 喜歡你 需要平靜的氣息 用最平和的聲音將這種心情傳遞 喜歡...
    MsDiva閱讀 188評論 2 2
  • 比懶惰更可怕的是自身的思維狹隘。 因為思維的局限废境,有時候我會在自己的這一畝三分地上坐井觀天畜挨;很...
    歌琳兒閱讀 83評論 0 4
  • 對不起巴元,媽媽。謝謝你能愛我驮宴,媽媽逮刨。 崗位面試失敗了。等向大人們電話匯報完成績后幻赚。這邊我還在悔恨我的能力有限禀忆,不小心...
    車馬正簡閱讀 217評論 0 0