web.xml

来自「一个JSF的商业组件的DEMO,infragistics-netadvantag」· XML 代码 · 共 72 行

XML
72
字号
<?xml version="1.0" encoding="UTF-8"?>

<!--
 Copyright 2005 Infragistics. All rights reserved.
 Infragistics PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
-->

<web-app
    version="2.4" 
    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">

    <description>Samples for Infragistics Component Studio</description>
    <display-name>Infragistics Component Studio - Samples</display-name>
    
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
    </context-param>
   
    <context-param>
      <param-name>javax.faces.CONFIG_FILES</param-name>
      <param-value>/WEB-INF/navigation.xml,/WEB-INF/managed-beans.xml</param-value>
    </context-param>
    
    <context-param> 
      <param-name>com.infragistics.faces.THEME</param-name>
      <param-value>Claymation</param-value>
	</context-param>

    <!-- Listener to configure JSF. This listener is NOT required for most app servers
    	as it is picked up automatically from the jsf jars. 
    	However some app servers such as Jetty, Resin, Oracle do NOT comply with the 
    	Servlet 2.3 Spec rule of calling listeners defined 
    	in tld files of a jar.
    	It seems safe to call the listener even though it's correctly picked up
    	by the app server.
		<listener>
			<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
		</listener>
		<listener>
			<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
		</listener>
    	
	-->
	<listener>
		<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
	</listener>
    
    <!-- Faces Servlet -->
	<servlet>
		<servlet-name>Faces Servlet</servlet-name>
		<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>Faces Servlet</servlet-name>
		<url-pattern>*.faces</url-pattern>
	</servlet-mapping>

	<welcome-file-list>
		<welcome-file>index.html</welcome-file>
		<welcome-file>index.htm</welcome-file>
		<welcome-file>index.jsp</welcome-file>
		<welcome-file>default.html</welcome-file>
		<welcome-file>default.htm</welcome-file>
		<welcome-file>default.jsp</welcome-file>
	</welcome-file-list>
</web-app>

⌨️ 快捷键说明

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