📄 web.xml
字号:
<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"><web-app> <!-- General description of your web application --> <display-name>An HTTP Binding Gateway to Jabber</display-name> <description> An implementation of JEP-0124 (HTTP-Binding). See http://www.jabber.org/jeps/jep-0124.html for details. </description> <context-param> <param-name>author</param-name> <param-value>steve@zeank.in-berlin.de</param-value> <description> The EMAIL address of the author to whom questions and comments about this application should be addressed. </description> </context-param> <servlet> <servlet-name>Jabber HTTP Binding Servlet</servlet-name> <servlet-class>org.jabber.JabberHTTPBind.JHBServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>Jabber HTTP Binding Servlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <session-config> <session-timeout>30</session-timeout> <!-- 30 minutes --> </session-config></web-app>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -