⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmppcontextlistener.java

📁 openfire 服务器源码下载
💻 JAVA
字号:
/** * $Revision: 1727 $ * $Date: 2005-07-29 19:55:59 -0300 (Fri, 29 Jul 2005) $ * * Copyright (C) 2008 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, or a commercial license * agreement with Jive. */package org.jivesoftware.openfire;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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -