美文网首页
dubbo main方法启动

dubbo main方法启动

作者: DamagedBoy | 来源:发表于2017-06-29 23:46 被阅读0次
    @Slf4j
    public class DubboPrivoter {
    
    
        public static void main(String[] a){
            try {
                ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext("classpath:application.xml");
                context.start();
            }catch (Exception e){
                log.error("=====:",e);
            }
            synchronized (DubboPrivoter.class){
                while(true){
                    try {
                        DubboPrivoter.class.wait();
                    }catch (Exception e){
                        log.error("synchronized===:",e);
                    }
                }
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:dubbo main方法启动

          本文链接:https://www.haomeiwen.com/subject/mizvcxtx.html