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

spring2.5+hibernate2.3调整 annotation

2012-06-26 
spring2.5+hibernate2.3整合 annotation晚上花了点时间写了个spring+hibernate的整合?下面是一点点心得?首

spring2.5+hibernate2.3整合 annotation

晚上花了点时间写了个spring+hibernate的整合

?

下面是一点点心得

?

首先是jar包了。这里需要注意的是 将有些重复的jar包删除?

最后的jar包集合应该是


spring2.5+hibernate2.3调整 annotation

接着需要配置数据源等等

?

?jdbc.properties代码

package com.anduo.sh.dao;import javax.annotation.Resource;import org.hibernate.SessionFactory;import org.springframework.orm.hibernate3.support.HibernateDaoSupport;public class BaseDaoSupport extends HibernateDaoSupport {@Resource(name = "sessionFactory")public void setSuperSessionFactory(SessionFactory sessionFactory) {super.setSessionFactory(sessionFactory);}}

这样做的好处就是,我们以后的dao直接集成上面的类 就不需要在每个dao中都写注入的方法

?

最后我们可以利用spring为我们提供的HibernateTemplate 这个类来完成数据的增删改查CRUD

?

到此,我想spring和hibernate的整合就非常明了了。哈哈

?

?

?

?

热点排行