Spring在非web应用中关闭IoC容器 (registerShutdownHook)

在基于web的ApplicationContext实现中,已有相应的实现来处理关闭web应用时恰当地关闭Spring IoC容器。但,如果你正在一个非web应用的环境下使用Spring的IoC容器,如dubbo服务,你想让容器优雅的关闭,并调用singleton的bean相应destory回调方法,你需要在JVM里注册一个“关闭钩子”(shutdown hook)。这一点非常容易做到,并且将会确保你的Spring IoC容器被恰当关闭,以及所有由单例持有的资源都会被释放。

        在基于web的ApplicationContext实现中,已有相应的实现来处理关闭web应用时恰当地关闭Spring IoC容器。

       但,如果你正在一个非web应用的环境下使用Spring的IoC容器,如dubbo服务,你想让容器优雅的关闭,并调用singleton的bean相应destory回调方法,你需要在JVM里注册一个“关闭钩子”(shutdown hook)。这一点非常容易做到,并且将会确保你的Spring IoC容器被恰当关闭,以及所有由单例持有的资源都会被释放。

      为了注册“关闭钩子”,你只需要简单地调用在org.springframework.context.support.AbstractApplicationContext实现中的registerShutdownHook()方法即可。

packagecom.hcm.dubbo.service;
 
importorg.slf4j.Logger;
importorg.slf4j.LoggerFactory;
importorg.springframework.context.support.ClassPathXmlApplicationContext;
 
publicclassDubboServiceStart {
 
    privatestaticfinal Logger LOG = LoggerFactory.getLogger(DubboServiceStart.class);
 
    publicstaticfinal String DUBBO_PROVIDER = "spring/dubbo-provider.xml";
 
    publicstaticvoid init() {
 
        LOG.info("开始启动dubo服务,载入的配置服务提供文件为["+ DUBBO_PROVIDER + "]");
 
        ClassPathXmlApplicationContext context = newClassPathXmlApplicationContext(newString[] { DUBBO_PROVIDER });
 
        context.registerShutdownHook();
        context.start();
 
        LOG.info("dubbo启动服务完毕,请查看日志");
 
        String[] names = context.getBeanDefinitionNames();
        System.out.print("Beans:");
        for(String string : names) {
            System.out.print(string + ",");
        }
        System.out.println();
    }
 
    publicstaticvoid main(String[] args) throwsInterruptedException {
        DubboServiceStart.init();
        while(true) {
            try{
                Thread.currentThread();
                Thread.sleep(3L);
            }catch(Exception e) {
                e.printStackTrace();
            }
        }
    }
 
}


转载自:http://my.oschina.net/huangcongmin12/blog/357538
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值