<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    jinfeng_wang

    G-G-S,D-D-U!

    BlogJava 首頁 新隨筆 聯(lián)系 聚合 管理
      400 Posts :: 0 Stories :: 296 Comments :: 0 Trackbacks
    http://wiki.metawerx.net/wiki/Web.xml


    Introduction

    The web.xml Deployment Descriptor file describes how to deploy a web application in a servlet container such as Tomcat.

    This file is required for every application you deploy on Tomcat. You will find one in the jsp-examples, servlet-examples and ROOT applications provided on a new Tomcat website, and every web application example you download, including inside WAR files.

    The location of the file is always the same: application root/WEB-INF/web.xml

    At minimum, the file needs to contain an XML descriptor and an opening and closing <web-app> tag.

    Here is a minimal XSD-style example for Tomcat 5.5. For other versions (5.0, 6.0 etc..) and to compare XSD and DTD declarations, see web.xml DTD and XSD.

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">

    </web-app>

    Inside the <web-app> tag, a number of other elements can be added. These are detailed below.

    Detailed Reference - click a tag for more information

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
            version="2.4">

            <!-- ========================================================== -->
            <!-- General --->
            <!-- ========================================================== -->

            <!-- Name the application -->
            <display-name>Example App</display-name>
            <description>An example application which is used to play with some of the features of Tomcat</description>

            <!-- This app is cluster-ready -->
            <distributable />

            <!-- Set timeout to 120 minutes -->
            <session-config>
                    <session-timeout>120</session-timeout>
            </session-config>


            <!-- ========================================================== -->
            <!-- Custom Tag Libraries --->
            <!-- ========================================================== -->

            <!-- Taglib declarations are no longer required since JSP 2.0, see Removing taglib from web.xml -->
            <!-- The <jsp-config> parent tag is also optional (taglib can be specified at the top level). -->
            <!--
            <jsp-config>
                    <taglib>
                            <taglib-uri>mytags</taglib-uri>
                            <taglib-location>/WEB-INF/jsp/mytaglib.tld</taglib-location>
                    </taglib>
            </jsp-config>
            -->


            <!-- ========================================================== -->
            <!-- Context Parameters --->
            <!-- ========================================================== -->

            <context-param>
                    <description>Enable debugging for the application</description>
                    <param-name>debug</param-name>
                    <param-value>true</param-value>
            </context-param>
            <context-param>
                    <description>The email address of the administrator, used to send error reports.</description>
                    <param-name>webmaster</param-name>
                    <param-value>address@somedomain.com</param-value>
            </context-param>


            <!-- ========================================================== -->
            <!-- JNDI Environment Variables --->
            <!-- ========================================================== -->

            <env-entry>
                    <env-entry-name>webmasterName</env-entry-name>
                    <env-entry-value>Ms. W. Master</env-entry-value>
                    <env-entry-type>java.lang.String</env-entry-type>
            </env-entry>
            <env-entry>
                    <env-entry-name>cms/defaultUserSettings/recordsPerPage</env-entry-name>
                    <env-entry-value>30</env-entry-value>
                    <env-entry-type>java.lang.Integer</env-entry-type>
            </env-entry>
            <env-entry>
                    <env-entry-name>cms/enableXMLExport</env-entry-name>
                    <env-entry-value>false</env-entry-value>
                    <env-entry-type>java.lang.Boolean</env-entry-type>
            </env-entry>
            <env-entry>
                    <env-entry-name>cms/enableEmailNotifications</env-entry-name>
                    <env-entry-value>true</env-entry-value>
                    <env-entry-type>java.lang.Boolean</env-entry-type>
            </env-entry>


            <!-- ========================================================== -->
            <!-- Servlets --->
            <!-- ========================================================== -->

            <!-- CMS Servlet, responds *.cms URL's -->
            <servlet>
                    <!-- Identification -->
                    <servlet-name>cms</servlet-name>
                    <servlet-class>com.metawerx.servlets.ContentManagementSystem</servlet-class>
                    <description>This servlet handles requests for the CMS (it is a controller in an MVC architecture)</description>

                    <!-- This servlet has two parameters -->
                    <init-param>
                            <param-name>debug</param-name>
                            <param-value>true</param-value>
                    </init-param>
                    <init-param>
                            <param-name>detail</param-name>
                            <param-value>2</param-value>
                    </init-param>

                    <!-- Load this servlet when the application starts (call the init() method of the servlet) -->
                    <load-on-startup>5</load-on-startup>
                    <!-- <run-at>0:00, 6:00, 12:00, 18:00</run-at> This tag is only valid for Resin -->
            </servlet>

            <!-- Map some URL's to the cms servlet (demonstrates *.extension mapping) -->
            <servlet-mapping>
                    <!-- For any URL ending in .cms, the cms servlet will be called -->
                    <servlet-name>cms</servlet-name>
                    <url-pattern>*.cms</url-pattern>
            </servlet-mapping>

            <!-- Rewriter Servlet, responds to /content/* and /admin/RewriterStatistics URL's -->
            <!-- Define a servlet to respond to /content/* URL's -->
            <servlet>
                    <servlet-name>rewriter</servlet-name>
                    <servlet-class>com.metawerx.servlets.URLRewriter</servlet-class>
            </servlet>

            <!-- Map some URL's to the rewriter servlet (demonstrates /path/* and specific URL mapping) -->
            <servlet-mapping>
                    <!-- For any URL starting with /content/, the rewriter servlet will be called -->
                    <servlet-name>rewriter</servlet-name>
                    <url-pattern>/content/*</url-pattern>
            </servlet-mapping>
            <servlet-mapping>
                    <!-- The rewriter servlet can also be called directly as /admin/RewriterStatistics, to return stats -->
                    <servlet-name>rewriter</servlet-name>
                    <url-pattern>/admin/RewriterStatistics</url-pattern>
            </servlet-mapping>

            <!-- PathJSP Servlet, maps /shop/item/* URL's to a JSP file -->
            <!-- Define a JSP file to respond to /shop/item/* URL's -->
            <servlet>
                    <servlet-name>pathjsp</servlet-name>
                    <jsp-file>pathfinder.jsp</jsp-file>
            </servlet>

            <!-- Map some URL's to the pathjsp servlet (demonstrates /long/path/* URL mapping) -->
            <servlet-mapping>
                    <!-- For any URL starting with /shop/item/, the pathjsp servlet will be called -->
                    <servlet-name>pathjsp</servlet-name>
                    <url-pattern>/shop/item/*</url-pattern>
            </servlet-mapping>


            <!-- ========================================================== -->
            <!-- Filters --->
            <!-- ========================================================== -->

            <!-- Example filter to set character encoding on each request (from Tomcat servlets-examples context) -->
            <filter>
                    <filter-name>Set Character Encoding</filter-name>
                    <filter-class>filters.SetCharacterEncodingFilter</filter-class>
                    <init-param>
                            <param-name>encoding</param-name>
                            <param-value>EUC_JP</param-value>
                    </init-param>
            </filter>
            <filter-mapping>
                    <filter-name>Set Character Encoding</filter-name>
                    <url-pattern>/*</url-pattern>
            </filter-mapping>

            <!-- Example filter to dump the HTTP request at the top of each page (from Tomcat servlets-examples context) -->
            <filter>
                    <filter-name>Request Dumper Filter</filter-name>
                    <filter-class>filters.RequestDumperFilter</filter-class>
            </filter>
            <filter-mapping>
                    <filter-name>Request Dumper Filter</filter-name>
                    <url-pattern>/*</url-pattern>
            </filter-mapping>


            <!-- ========================================================== -->
            <!-- Listeners --->
            <!-- ========================================================== -->

            <!-- Define example application events listeners -->
            <listener>
                    <listener-class>com.metawerx.listener.ContextListener</listener-class>
            </listener>
            <listener>
                    <listener-class>com.metawerx.listener.SessionListener</listener-class>
            </listener>


            <!-- ========================================================== -->
            <!-- Security --->
            <!-- ========================================================== -->

            <!-- Define roles -->
            <security-role>
                    <role-name>admin</role-name>
            </security-role>
            <security-role>
                    <role-name>cms_editors</role-name>
            </security-role>
            
            <!-- Define a constraint to restrict access to /private/* -->
            <security-constraint>

                    <display-name>Security constraint for the /private folder</display-name>

                    <web-resource-collection>
                            
                            <web-resource-name>Protected Area</web-resource-name>
                            <url-pattern>/private/*</url-pattern>
                            
                            <!-- If you list http methods, only those methods are protected. -->
                            <!-- Leave this commented out to protect all access -->
                            <!--
                            <http-method>DELETE</http-method>
                            <http-method>GET</http-method>
                            <http-method>POST</http-method>
                            <http-method>PUT</http-method>
                            -->

                    </web-resource-collection>

                    <auth-constraint>
                            <!-- Only only administrator and CMS editors to access this area -->
                            <role-name>admin</role-name>
                            <role-name>cms_editors</role-name>
                    </auth-constraint>

            </security-constraint>

            <!-- FORM based authentication -->
            <!-- Leave this commented out, we will use BASIC (HTTP) authentication instead -->
            <!--
            <login-config>
                    <auth-method>FORM</auth-method>
                    <form-login-config>
                            <form-login-page>/login.jsp</form-login-page>
                            <form-error-page>/error.jsp</form-error-page>
                    </form-login-config>
            </login-config>
            -->
            <!-- This application uses BASIC authentication -->
            <login-config>
                    <auth-method>BASIC</auth-method>
                    <realm-name>Editor Login</realm-name>
            </login-config>

            <!-- Define a constraint to force SSL on all pages in the application -->
            <security-constraint>

                    <web-resource-collection>
                            <web-resource-name>Entire Application</web-resource-name>
                            <url-pattern>/*</url-pattern>
                    </web-resource-collection>

                    <user-data-constraint>
                            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
                    </user-data-constraint>

            </security-constraint>


            <!-- ========================================================== -->
            <!-- Error Handler --->
            <!-- ========================================================== -->

            <!-- Define an error handler for 404 pages -->
            <error-page>
                    <error-code>404</error-code>
                    <location>/error404.jsp</location>
            </error-page>

            <!-- Define an error handler for java.lang.Throwable -->
            <error-page>
                    <exception-type>java.lang.Throwable</exception-type>
                    <location>/errorThrowable.jsp</location>
            </error-page>


            <!-- ========================================================== -->
            <!-- Extra MIME types --->
            <!-- ========================================================== -->

            <!-- Set XML mime-mapping so spreadsheets open properly instead of being sent as an octet/stream -->
            <mime-mapping>
                    <extension>xls</extension>
                    <mime-type>application/vnd.ms-excel</mime-type>
            </mime-mapping>


            <!-- ========================================================== -->
            <!-- Welcome Files --->
            <!-- ========================================================== -->

            <!-- Define, in order of preference, which file to show when no filename is defined in the path -->
            <!-- eg: when user goes to http://yoursite.com/ or http://yoursite.com/somefolder -->
            <!-- Defaults are provided in the server-wide web.xml file, such as index.jsp, index.htm -->
            <!-- Note: using this tag overrides the defaults, so don't forget to add them here -->
            <welcome-file-list>
                    <!-- Use index.swf if present, or splash.jsp, otherwise just look for the normal defaults -->
                    <welcome-file>index.swf</welcome-file>
                    <welcome-file>splash.jsp</welcome-file>
                    <welcome-file>index.html</welcome-file>
                    <welcome-file>index.htm</welcome-file>
                    <welcome-file>index.jsp</welcome-file>
            </welcome-file-list>

    </web-app>

    More Information



    posted on 2008-03-18 15:57 jinfeng_wang 閱讀(587) 評論(0)  編輯  收藏 所屬分類: javaZZ
    主站蜘蛛池模板: 你懂的免费在线观看| 少妇性饥渴无码A区免费| 在线人成免费视频69国产| 国产91免费在线观看| 又黄又爽一线毛片免费观看 | 日韩免费a级在线观看| 亚洲人成在线播放网站| 国产亚洲精品bv在线观看| 99ri精品国产亚洲| 亚洲伊人久久大香线蕉AV| 国产精品美女久久久免费| 91香蕉成人免费网站| 亚洲国产精品无码久久青草 | 久久久久免费视频| 野花高清在线观看免费完整版中文 | 免费人成网站在线观看不卡| 手机在线毛片免费播放| 国产成人精品日本亚洲网站| 亚洲精品av无码喷奶水糖心| 久久国产乱子伦精品免费不卡| 免费大片黄手机在线观看| 亚洲网站在线播放| 国产JIZZ中国JIZZ免费看| 成人毛片视频免费网站观看| 久久亚洲精品国产精品黑人| 猫咪免费人成网站在线观看入口| 亚洲成人免费网址| 伊伊人成亚洲综合人网7777| 亚洲爆乳无码精品AAA片蜜桃| 暖暖免费日本在线中文| 亚洲av成人一区二区三区在线观看 | 黄+色+性+人免费| 精品国产_亚洲人成在线高清| 亚洲精品无码日韩国产不卡av| 久久久久成人片免费观看蜜芽| 亚洲福利精品电影在线观看| 久久亚洲精品国产亚洲老地址 | 久久久久久国产精品免费免费| 好看的电影网站亚洲一区| 曰批全过程免费视频免费看| 无码人妻一区二区三区免费|