码迷,mamicode.com
首页 > 其他好文 > 详细

SSH整合笔记

时间:2018-04-28 14:36:50      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:gdi   --   date   AC   int   pat   director   data   org   

Spring 和 Hibernate3的整合
1、org.springframework.orm.hibernate3.LocalSessionFactoryBean
相当于,
SessionFactory mSessionFactory = congfig.getSessionFactory();
例子如下:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!--
映射文件所在的路径
-->
<property name="mappingDirectoryLocations">
<list>
<!--
spring容器会去该包及子包下搜索所有的映射文件
-->
<value>classpath:com/itheima12/crm/domain</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
 
 
2、org.springframework.orm.hibernate3.HibernateTemplate
相当于 Session mSession = mSessionFactory.getSession();
例子:
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>
 
3、org.springframework.orm.hibernate3.HibernateTransactionManager
相当于
Transaction transaction = session.beginTransaction();
transaction.commit();
 
 
 
 

SSH整合笔记

标签:gdi   --   date   AC   int   pat   director   data   org   

原文地址:https://www.cnblogs.com/SharkBin/p/8966676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!