document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  5.     id="spring-jsf-tutorial" version="2.5">
  6.     <display-name>ICEfaces Tutorial: Timezone w/ Spring</display-name>
  7.     <description>
  8.         ICEfaces Tutorial: Timezone integration with Spring 3.x
  9.         Show how to use ICEFaces w/ the Spring Framework, version 3.
  10.     </description>
  11.  
  12.     <!--
  13.     ===========================================================================
  14.     Spring Framework Configuration
  15.     ===========================================================================
  16.      -->
  17.  
  18.     <context-param>
  19.         <param-name>contextConfigLocation</param-name>
  20.         <param-value>
  21.             classpath*:META-INF/spring/application-context.xml
  22.         </param-value>
  23.     </context-param>
  24.  
  25.     <listener>
  26.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  27.     </listener>
  28.  
  29.     <!--
  30.     ===========================================================================
  31.     ICEFaces Configuration
  32.     ===========================================================================
  33.      -->
  34.     <!-- ... not shown (same as the standard tutorial) ... -->
  35. </web-app>
');