1:<?xml version='1.0' encoding='UTF-8'?>
   2:
   3:
   4:<!DOCTYPE faces-config PUBLIC
   5:  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
   6:  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
   7:
   8:<!-- =========== FULL CONFIGURATION FILE ================================== -->
   9:
  10:<faces-config>
  11:
  12:        <!-- Allows you to inject Spring beans into JSF managed beans... -->
  13:    <application>
  14:        <variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
  15:    </application>
  16:    
  17:    <managed-bean>
  18:        <managed-bean-name>showRooms</managed-bean-name>
  19:        <managed-bean-class>hotelReservations.ShowRooms</managed-bean-class>
  20:        <managed-bean-scope>request</managed-bean-scope>
  21:        <managed-property>
  22:            <property-name>manager</property-name>
  23:            <value>#{manager}</value>
  24:        </managed-property>
  25:    </managed-bean>
  26:    
  27:</faces-config>