咖啡日语论坛

 找回密码
 注~册
搜索
查看: 3634|回复: 0

jsf、Spring、Hibernate 集成 web.xml配置文件

[复制链接]
发表于 2007-5-23 16:44:21 | 显示全部楼层 |阅读模式
<?xml version="1.0"?>

<!--
* Copyright 2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->

<!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>

<!-- This web.xml can be used during debugging, when there is no myfaces.jar
  library available.
  
  The faces-config.xml file (that is normally in the myfaces.jar) must be
  copied to the /WEB-INF directory of the web context.
  
  The TLDs (that are normally in the myfaces.jar) must be
  copied to the /WEB-INF/lib directory of the web context.-->
<display-name>PCManager Suite</display-name>
<descrīption>PCManager Suite.</descrīption>
<!-- JavaServer Faces -->
<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/xml/faces-config.xml,/WEB-INF/xml/faces-managed-beans.xml,/WEB-INF/xml/faces-navigation.xml
  </param-value>
</context-param>
<context-param>
  <!-- contextConfigLocation -->
  <param-name>contextConfigLocation</param-name>
  <param-value>
   /WEB-INF/xml/applicationContext-hibernate.xml
  </param-value>
</context-param>
<!--
  - Location of the Log4J config file, for initialization and refresh checks.
  - Applied by Log4jConfigListener.
-->
<context-param>
  <param-name>log4jConfigLocation</param-name>
  <param-value>/WEB-INF/log/log4j.properties</param-value>
</context-param>

<context-param>
  <param-name>org.apache.myfaces.ALLOW_JAVAscrīpt</param-name>
  <param-value>true</param-value>
  <descrīption>
   This parameter tells MyFaces if javascrīpt code should be
   allowed in the rendered HTML output. If javascrīpt is
   allowed, command_link anchors will have javascrīpt code that
   submits the corresponding form. If javascrīpt is not
   allowed, the state saving info and nested parameters will be
   added as url parameters. Default: "true"
  </descrīption>
</context-param>

<context-param>
  <param-name>org.apache.myfaces.DETECT_JAVAscrīpt</param-name>
  <param-value>false</param-value>
</context-param>

<context-param>
  <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
  <param-value>true</param-value>
  <descrīption>
   If true, rendered HTML code will be formatted, so that it is
   "human readable". i.e. additional line separators and
   whitespace will be written, that do not influence the HTML
   code. Default: "true"
  </descrīption>
</context-param>

<context-param>
  <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
  <param-value>true</param-value>
  <descrīption>
   If true, a javascrīpt function will be rendered that is able
   to restore the former vertical scroll on every request.
   Convenient feature if you have pages with long lists and you
   do not want the browser page to always jump to the top if
   you trigger a link or button action that stays on the same
   page. Default: "false"
  </descrīption>
</context-param>


<!-- WelcomeFile Filter -->
<!--
  <filter>
  <filter-name>WelcomeFile Filter</filter-name>
  <filter-class>org.apache.myfaces.webapp.filter.WelcomeFileFilter</filter-class>
  <descrīption>
  Due to the manner in which the JSP / servlet lifecycle
  functions, it is not currently possible to specify default
  welcome files for a web application and map them to the
  MyFacesServlet.  Normally they will be mapped to the
  default servlet for the JSP container.  To offset this
  shortcoming, we utilize a servlet Filter which examines
  the URI of all incoming requests.
  </descrīption>
  </filter>
-->

<!-- Extensions Filter -->
<filter>
  <filter-name>SecurityFilter</filter-name>
  <filter-class>
   com.inphit.pms.web.system.SecurityFilter
  </filter-class>
</filter>
<filter>
  <filter-name>extensionsFilter</filter-name>
  <filter-class>
   org.apache.myfaces.component.html.util.ExtensionsFilter
  </filter-class>
  <init-param>
   <param-name>uploadMaxFileSize</param-name>
   <param-value>100m</param-value>
   <descrīption>
    Set the size limit for uploaded files. Format: 10 - 10
    bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
   </descrīption>
  </init-param>
  <init-param>
   <param-name>uploadThresholdSize</param-name>
   <param-value>100k</param-value>
   <descrīption>
    Set the threshold size - files below this limit are
    stored in memory, files above this limit are stored on
    disk.

    Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
   </descrīption>
  </init-param>
  <!--      
   <init-param>
   <param-name>uploadRepositoryPath</param-name>
   <param-value>/temp</param-value>
   <descrīption>Set the path where the intermediary files will be stored.
   </descrīption>
   </init-param>-->
</filter>
<filter-mapping>
  <filter-name>extensionsFilter</filter-name>
  <url-pattern>*.jsf</url-pattern>
</filter-mapping>
<filter-mapping>
  <filter-name>SecurityFilter</filter-name>
  <url-pattern>*.jsf</url-pattern>
</filter-mapping>
<filter-mapping>
  <filter-name>extensionsFilter</filter-name>
  <url-pattern>/faces/*</url-pattern>
</filter-mapping>

<listener>
  <listener-class>
   org.apache.myfaces.webapp.StartupServletContextListener
  </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>

<!-- source code servlet (will not work with JSF virtual path mapping) -->
<!--  this servlet is optional and for educational purposes only -->
<servlet>
  <servlet-name>SourceCodeServlet</servlet-name>
  <servlet-class>
   org.apache.myfaces.util.servlet.SourceCodeServlet
  </servlet-class>
</servlet>
<servlet>
  <servlet-name>SpringContextServlet</servlet-name>
  <servlet-class>
   org.springframework.web.context.ContextLoaderServlet
  </servlet-class>
  <load-on-startup>1</load-on-startup>
</servlet>

<!-- Faces Servlet Mapping -->

<!-- virtual path mapping -->
<!--
  <servlet-mapping>
  <servlet-name>Faces Servlet</servlet-name>
  <url-pattern>/faces/*</url-pattern>
  </servlet-mapping>
-->

<!-- extension mapping -->
<servlet-mapping>
  <servlet-name>Faces Servlet</servlet-name>
  <url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<servlet-mapping>
  <servlet-name>SourceCodeServlet</servlet-name>
  <url-pattern>*.source</url-pattern>
</servlet-mapping>

<!-- Welcome files
  <welcome-file>index.jsp</welcome-file>
  <welcome-file>index.html</welcome-file>
  <welcome-file>index.htm</welcome-file>
  <welcome-file>index.jsp</welcome-file>
-->

<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注~册

本版积分规则

小黑屋|手机版|咖啡日语

GMT+8, 2025-6-8 16:44

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表