xmppcontextlistener.java

来自「基于Jabber协议的即时消息服务器」· Java 代码 · 共 44 行

JAVA
44
字号
/** * $Revision: 1727 $ * $Date: 2005-07-29 19:55:59 -0300 (Fri, 29 Jul 2005) $ * * Copyright (C) 2005 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */package org.jivesoftware.wildfire;import javax.servlet.ServletContextEvent;import javax.servlet.ServletContextListener;/** * An XMPPContextListener starts an XMPPServer when a ServletContext is initialized and stops * the xmpp server when the servlet context is destroyed. * * @author evrim ulu * @author Gaston Dombiak */public class XMPPContextListener implements ServletContextListener {    protected String XMPP_KEY = "XMPP_SERVER";    public void contextInitialized(ServletContextEvent event) {        if (XMPPServer.getInstance() != null) {            // Running in standalone mode so do nothing            return;        }        XMPPServer server = new XMPPServer();        event.getServletContext().setAttribute(XMPP_KEY, server);    }    public void contextDestroyed(ServletContextEvent event) {        XMPPServer server = (XMPPServer) event.getServletContext().getAttribute(XMPP_KEY);        if (null != server) {            server.stop();        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?