首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

在Spring中配备SessionFactory的二种方式

2012-09-06 
在Spring中配置SessionFactory的二种方式在Spring中配置SessionFactory的二种方式第一种方式:把Hibernate

在Spring中配置SessionFactory的二种方式

在Spring中配置SessionFactory的二种方式

第一种方式:

把Hibernate的配置文件hibernate.cfg.xml配置到applicationContext.xml中

<bean id="sessionFactory"  value="file:src/hibernate.cfg.xml">   </property></bean>

第二种方式:

利用dataSource来配置SessionFactory

<bean id="sessionFactory"value="dataSource"></property><property name="mappingResources"><list><value>com/pojo/Guestbook.hbm.xml</value>                        <value>com/pojo/User.hbm.xml</value>                                    ......</list></property><property name="hibernateProperties"><props><prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop></props></property></bean>

热点排行