//私有構(gòu)造方法
超過10余年行業(yè)經(jīng)驗,技術(shù)領(lǐng)先,服務(wù)至上的經(jīng)營模式,全靠網(wǎng)絡(luò)和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務(wù)范圍包括了:成都做網(wǎng)站、成都網(wǎng)站設(shè)計、成都外貿(mào)網(wǎng)站建設(shè),成都網(wǎng)站推廣,成都網(wǎng)站優(yōu)化,整體網(wǎng)絡(luò)托管,微信小程序開發(fā),微信開發(fā),成都App制作,同時也可以讓客戶的網(wǎng)站和網(wǎng)絡(luò)營銷和我們一樣獲得訂單和生意!
private ConfigProfileMan() {
generalTaskList = new ArrayList<>();
}
私有創(chuàng)建實例方法
private static ConfigProfileMan getInstance() {
if (configProfileMan == null) {
configProfileMan = new ConfigProfileMan();
}
return configProfileMan;
}
//調(diào)用方法
public static void loadProfile() {
try {
ConfigProfileMan.getInstance().load();
} catch (Exception e) {
logger.error("ConfigProfileMan-->loadProfile()");
}
}