标准hibernate配置文件(我以前做海信项目时配置的)

标准hibernate配置文件(我以前做海信项目时配置的)

<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>

<!-- properties -->

<property name="hibernate.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:jtds:sqlserver://192.168.0.29:1433/HisenseCommunity</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.connection.password">admin</property>
<property name="hibernate.dialect">org.hibernate.dialect.SybaseDialect</property>
<property name="hibernate.connection.pool.size">20</property>
<property name="hibernate.show_sql">true</property>

<!-- mapping files -->
<mapping resource="hisense/ORMFILE/AdminInfoBean.hbm.xml"/>
<mapping resource="hisense/ORMFILE/AdminLevel.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Operate.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Relation.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Community.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Category.hbm.xml"/>
<mapping resource="hisense/ORMFILE/CategoryType.hbm.xml"/>
<mapping resource="hisense/ORMFILE/AdBusiness.hbm.xml"/>
<mapping resource="hisense/ORMFILE/AdClient.hbm.xml"/>
<mapping resource="hisense/ORMFILE/AdContent.hbm.xml"/>
<mapping resource="hisense/ORMFILE/AdType.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Profile.hbm.xml"/>
<mapping resource="hisense/ORMFILE/ProfileDv.hbm.xml"/>
<mapping resource="hisense/ORMFILE/ProfileAlbum.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Club.hbm.xml"/>
<mapping resource="hisense/ORMFILE/CommendType.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Comment.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Goods.hbm.xml"/>
<mapping resource="hisense/ORMFILE/CommunityMarket.hbm.xml"/>
<mapping resource="hisense/ORMFILE/CommunityMarketType.hbm.xml"/>
<mapping resource="hisense/ORMFILE/News.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Merchant.hbm.xml"/>
<mapping resource="hisense/ORMFILE/Commend.hbm.xml"/>
<mapping resource="hisense/ORMFILE/ClubActivities.hbm.xml"/>
<mapping resource="hisense/ORMFILE/ActivityType.hbm.xml"/>
<mapping resource="hisense/ORMFILE/EstateManagement.hbm.xml"/>
<mapping resource="hisense/ORMFILE/ProfileAndClubRelations.hbm.xml"/>
</session-factory>
</hibernate-configuration>

你可能感兴趣的:(标准hibernate配置文件(我以前做海信项目时配置的))