码迷,mamicode.com
首页 > 移动开发 > 详细

Spring DM所提供的Bundle监听接口OsgiBundleApplicationContextListener

时间:2017-02-16 23:51:14      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:关闭   lis   close   code   framework   sys   app   ati   16px   

通过使用Spring DM提供的监听接口,我们可以更好的对服务进行管控,其实该接口也非常简单就能使用上,只要自定义一个类实现OsgiBundleApplicationContextListener接口,实现onOsgiApplicationEvent方法,并将自定义类注册成OSGI服务,通过判断event的事件类型来执行相应逻辑处理,同时也可以获取到当前监听的Bundle,从而达到更深层次的监控,

 

public class ListenerDemo implements OsgiBundleApplicationContextListener{

    @Override
    public void onOsgiApplicationEvent(OsgiBundleApplicationContextEvent event) {
        
        String bundleName = event.getBundle().getSymbolicName();
        
        if (event instanceof OsgiBundleContextRefreshedEvent) {//Spring上下文创建成功事件
            System.out.println("服务启动");
        }else if (event instanceof OsgiBundleContextClosedEvent) {//Spring上下文销毁事件
            System.out.println("服务关闭");
            
        }
    }
}

 

<bean id="ListenerDemo" class="com.sample.service.listener.ListenerDemo"></bean>
    
    <osgi:service ref="ListenerDemo" interface="org.springframework.osgi.context.event.OsgiBundleApplicationContextListener"/>

 

Spring DM所提供的Bundle监听接口OsgiBundleApplicationContextListener

标签:关闭   lis   close   code   framework   sys   app   ati   16px   

原文地址:http://www.cnblogs.com/xufan/p/6407492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!