首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

WEB 中起动线程

2012-10-27 
WEB 中启动线程public class SystemContextListener implements ServletContextListener {private MyThrea

WEB 中启动线程
public class SystemContextListener implements ServletContextListener { 
 
    private MyThread thread = null; 
    @Override 
    public void contextDestroyed(ServletContextEvent arg0) { 

        thread.setAppIsAlive(false); 
    } 
 
    @Override 
    public void contextInitialized(ServletContextEvent e) { 
        ServletContext ctx = e.getServletContext(); 
        ctx.setAttribute("onlineUser", new ConcurrentHashMap<String, Date>()); 
        MyThread myThread = (MyThread ) 
                WebApplicationContextUtils.getWebApplicationContext(ctx).getBean("MyThread "); 
        onlineUserCheckThread.setName("MyThread "); 
        thread = checkThread; 
        thread.start(); 
         
    } 
 
 

热点排行