⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 50c4b025010e001c1029d3773ba474c9

📁 一个购房管理系统,JSF+Hibernate+Mssql2
💻
字号:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

	<faces-config>
		<converter>
			<converter-for-class>
				com.housesale.entity.Building
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.BuildingConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Community
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.CommunityConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Customer
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.CustomerConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.House
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.HouseConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Housecheck
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.HousecheckConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Housesale
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.HousesaleConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Housestyle
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.HousestyleConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Operator
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.OperatorConverter
			</converter-class>
		</converter>
		<converter>
			<converter-for-class>
				com.housesale.entity.Payment
			</converter-for-class>
			<converter-class>
				com.housesale.jsfbean.PaymentConverter
			</converter-class>
		</converter>
		<managed-bean>
			<managed-bean-name>building</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.BuildingController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>community</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.CommunityController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>customer</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.CustomerController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>house</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.HouseController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>housecheck</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.HousecheckController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>housesale</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.HousesaleController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>housestyle</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.HousestyleController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>operator</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.OperatorController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<managed-bean>
			<managed-bean-name>payment</managed-bean-name>
			<managed-bean-class>
				com.housesale.jsfbean.PaymentController
			</managed-bean-class>
			<managed-bean-scope>session</managed-bean-scope>
		</managed-bean>
		<navigation-rule>
			<navigation-case>
				<from-outcome>building_create</from-outcome>
				<to-view-id>/building/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>building_list</from-outcome>
				<to-view-id>/building/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>building_edit</from-outcome>
				<to-view-id>/building/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>building_detail</from-outcome>
				<to-view-id>/building/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>community_create</from-outcome>
				<to-view-id>/community/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>community_list</from-outcome>
				<to-view-id>/community/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>community_edit</from-outcome>
				<to-view-id>/community/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>community_detail</from-outcome>
				<to-view-id>/community/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>customer_create</from-outcome>
				<to-view-id>/customer/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>customer_list</from-outcome>
				<to-view-id>/customer/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>customer_edit</from-outcome>
				<to-view-id>/customer/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>customer_detail</from-outcome>
				<to-view-id>/customer/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>house_create</from-outcome>
				<to-view-id>/house/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>house_list</from-outcome>
				<to-view-id>/house/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>house_edit</from-outcome>
				<to-view-id>/house/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>house_detail</from-outcome>
				<to-view-id>/house/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housecheck_create</from-outcome>
				<to-view-id>/housecheck/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housecheck_list</from-outcome>
				<to-view-id>/housecheck/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housecheck_edit</from-outcome>
				<to-view-id>/housecheck/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housecheck_detail</from-outcome>
				<to-view-id>/housecheck/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housesale_create</from-outcome>
				<to-view-id>/housesale/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housesale_list</from-outcome>
				<to-view-id>/housesale/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housesale_edit</from-outcome>
				<to-view-id>/housesale/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housesale_detail</from-outcome>
				<to-view-id>/housesale/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housestyle_create</from-outcome>
				<to-view-id>/housestyle/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housestyle_list</from-outcome>
				<to-view-id>/housestyle/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housestyle_edit</from-outcome>
				<to-view-id>/housestyle/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>housestyle_detail</from-outcome>
				<to-view-id>/housestyle/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>operator_create</from-outcome>
				<to-view-id>/operator/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>operator_list</from-outcome>
				<to-view-id>/operator/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>operator_edit</from-outcome>
				<to-view-id>/operator/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>operator_detail</from-outcome>
				<to-view-id>/operator/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>payment_create</from-outcome>
				<to-view-id>/payment/New.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>payment_list</from-outcome>
				<to-view-id>/payment/List.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>payment_edit</from-outcome>
				<to-view-id>/payment/Edit.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>
		<navigation-rule>
			<navigation-case>
				<from-outcome>payment_detail</from-outcome>
				<to-view-id>/payment/Detail.jsp</to-view-id>
			</navigation-case>
		</navigation-rule>

	</faces-config>

⌨️ 快捷键说明

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