博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hibernate学习笔记二
阅读量:5988 次
发布时间:2019-06-20

本文共 2375 字,大约阅读时间需要 7 分钟。

上一篇关于,主要是作为hibernate的入门知识。没有和spring发生任何关系,这一篇我将把spring集成进去,看spring如何管理hibernate,还有和未使用spring之前有什么区别?将在文章后面附上使用spring集成和不使用spring集成,不同的地方。好,开始spring集成hibernate的学习之旅。

 

还是准备必要的jar包,如图:

 

下面,开始新建项目工程,新建普通的java project,如图:

 

其实,跟上一篇博客中的工程文件没多大区别,主要的区别是去掉了hibernate.cfg.xml,增加了applicationContext.xml配置文件,主要原因是把hibernate交给spring来管理,所以hibernate.cfg.xml文件就不需要了

 

其中,model类中的实体类没多大区别,主要看一下spring配置文件applicationContext.xml中的具体配置内容。代码如下:

classpath*:/cn/***/hibernate/model/*.hbm.xml
org.hibernate.dialect.MySQLDialect

 

其中,数据源配置,我们采用了dbcp,代码如下:

这一部分和未使用spring集成之前的区别是,我们把数据源datasource配置在了hibernate.cfg.xml中

 

还有,使用了spring之后我们采用如下的配置方式,加载*.hbm.xml文件(其实加载该配置文件的方式有很多中,具体参照spring的文档),代码如下:

classpath*:/cn/***/hibernate/model/*.hbm.xml
org.hibernate.dialect.MySQLDialect

 

比较关键的配置,就是下面的配置方法(spring采用这种配置去加载多个*.hbm.xml文件):

classpath*:/cn/***/hibernate/model/*.hbm.xml

下面,就是我们真正看到spring和hibernate集成的主要地方,也是我们要使用hibernate的核心:

我们使用hibernateTemplate来保存实体到数据库。

好到此为止,我们使用spring来管理hibernate的学习已经完成,下面使用代码来进行测试

import java.util.Date;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.cfg.Configuration;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import org.springframework.orm.hibernate3.HibernateTemplate;import cn.git.hibernate.model.Teacher;public class TeacherTest {	/**	 * @param args	 */	public static void main(String[] args) {		ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");		HibernateTemplate template = (HibernateTemplate) context.getBean("hibernateTemplate");		Teacher teacher = (Teacher) context.getBean("teacher");		teacher.setName("spring_hibernate");		teacher.setAddress("spring");		teacher.setYear(new Date());		template.save(teacher);	}}

 

查看一下数据库,看采用该方式是否能成功保存数据到数据库

数据成功保存到数据库,该篇学习笔记大功告成,结束。。。

 

你可能感兴趣的文章
HBase Config File
查看>>
Circle Queue in C
查看>>
LVS环境搭建
查看>>
vmware安装ubuntu1404后鼠标左键无法使用的解决方法
查看>>
[转]Nuget Tool
查看>>
个人介绍(来者必看)
查看>>
一段简易的判断手机屏幕横屏竖屏的JS代码
查看>>
新闻报道翻译研讨20091128 饱受战争冲突之苦的国家腐败根深蒂固Corruption Digs Deepest in Countries in Conflict...
查看>>
Redis的集群安装以及rehash重新迁移教程指南
查看>>
软件公司创业秘籍
查看>>
教您用最简单的方法设置电脑自动关机
查看>>
__getattr__,settr
查看>>
curl返回值详解
查看>>
Java printf用法
查看>>
斯坦福NLP笔记45 —— Sequence Models for Named Entity Rec
查看>>
发布Maven构件到中央仓库
查看>>
colorbox插件取消键
查看>>
JACK——TeamsManual5 Team Belief Connections
查看>>
一个好的博客,内容是丰富的,这是小生一些诗句和日常图
查看>>
iOS中截取当前屏幕,并保存图片的代码例子
查看>>