Examples of IInit


Examples of com.bj58.spat.gaea.server.contract.init.IInit

    List<String> initList = sc.getList("gaea.init", ",");
    if(initList != null) {
      for(String initBeans : initList) {
        try {
          logger.info("load: " + initBeans);
          IInit initBean = (IInit)classLoader.loadClass(initBeans).newInstance();
          Global.getSingleton().addInit(initBean);
          initBean.init();
        } catch(Exception e) {
          logger.error("init " + initBeans + " error!!!", e);
        }
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.