Spring和Hibernate相遇
Spring是一个很贪婪的家伙,看到他的长长的jar包列表就知道了,其实对于hibernate的所有配置都是可以放在Spring中来进行得,但是我还是坚持各自分明,Spring只是负责自动探测声明类(不用每次添加类都去到配置文件中进行配置,尤其团队作业还有文件冲突问题),Hibernate的配置文件专门负责和数据打交道;
Spring的最小jar子集:beans,context,core,expression;如何是和Hibernate合作,还需要添加orm以及tx(事务相关);Hibernate到了4就非常友好,直接将libs文件夹里面的requires里面的jar包放到里面就可以了(3的话还需要把根目录的Hibernate3.jar放入);
- ApplicationContext配置如下:
<?xml
version="1.0"
encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
"
default-autowire="byName"
default-lazy-init="false">
<!-- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> -->
<bean
id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property
name="configLocation"
value="classpath:hibernate.cfg.xml"
/>
<property
name="packagesToScan"
value="com.hbm.entity.*">
<!-- <list>
<value>com.historycreator.hibernate</value>
</list> -->
</property>
<!-- <property name="annotatedPackages">
<list>
<value>com.historycreator.hibernate</value>
</list>
</property>
<property name="annotatedClasses">
<list>
<value>com.historycreator.hibernate.Event</value>
<value> com.historycreator.hibernate.Log</value>
</list>
</property> -->
</bean>
</beans>
Xmlns以及xmlns:xsi以及xsi都是需要有的;如果只声明了xmlns:xsi,但是没有描述xsi将会报错;这里我认为推测应该是spring在加载的时候是会读取这些值,然后对xml文件进行校验;因为如果将xmlns写错或者不写都将会在运行时出错;所以对于命名空间以及xsd文件的描述是必须的;
校验xml文件格式,首先会根据命名空间到spring-context的jar下面的WEB-INF中找到spring.schemas,到schemas下面找到对应的文件(xsd文件,一般都是放置在"org/springframework/*/config/"下面);如果本地找不到,他将会到网上下载xsd文件对xml的schema进行校验;
对于sessionFactory的bean的描述,对于Hibernate3来说是" org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean",但是对于Hibernate4而言是" org.springframework.orm.hibernate4.LocalSessionFactoryBean",你会发现在Spring4里面是找不到针对H4的AnnotationSessionFactoryBean(只是在H3的support包下面有这个bean),已经全盘的放置到了LocalSessionFactory中,在里面会找到setAnnotatedPackages以及setAnnotatedClasses方法(这些方法在H3下面的LocalSessionFactory是没有的),这些都是在H3-supportjar包下面的AnnotationSessionFactory下面可以找到;所以LocalSessionFactory已经全面取代了H3时代的AnnotationSessionFactory;
为了实现监听统配,见"packagesToScan",value采用的是统配的方式,所有包体名称符合的包下面的类都将会被监听,这样就不需要每次添加entity都到配置文件中注册;"packagesToScan"还有一种描述方式就是通过填充<list>节点的方式,这种方式只能是声明完整地包名称,不能使用通配模式;
与之类似的是annotatedPackage,这个property基本可以忽略,没什么卵用,需要添加在包体中添加package-info文件,然后进行anntation才可以;
annotedClasses可以通过配置value以及<list>方式进行指定,但是必须是完整路径,无法使用通配模式;
- 入口类:
public
class EventManager {
static ApplicationContext ctx;
static {
ctx = new ClassPathXmlApplicationContext("ApplicationContext.xml");
}
public
static ApplicationContext getContext(){
return
ctx;
}
… …
}
对于Spring的应用程序(Web程序启动的时候会自动加载,配置文件ApplicationContext.xml路径在放置在WEB-INF下面),需要在启动的时候手动进行容器配置文件初始化,见红色部分;
- 在Hibernate初始化:
public
class HibernateUtil {
private
static
final SessionFactory sessionFactory = buildSessionFactory();
private
static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from hibernate.cfg.xml
//return new Configuration().configure().buildSessionFactory();
return (SessionFactory)EventManager.getContext().getBean("sessionFactory");
} catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
System.err.println("Initial SessionFactory creation failed." + ex);
throw
new ExceptionInInitializerError(ex);
}
}
public
static SessionFactory getSessionFactory() {
return
sessionFactory;
}
}
- 使用Hibernate进行数据库操作:
public
class EventManager {
… …
public
static
void main(String[] args) {
EventManager mgr = new EventManager();
mgr.createAndStoreEvent("My Event", new Date());
mgr.showEvents();
HibernateUtil.getSessionFactory().close();
System.out.println("OK, Complete!");
}
private
void createAndStoreEvent(String title, Date theDate) {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
Event theEvent = new Event();
theEvent.setTitle(title);
theEvent.setDate(theDate);
session.save(theEvent);
Log theLog = new Log();
theLog.setLogInfo("well, well, OK!");
session.save(theLog);
session.getTransaction().commit();
}
private
void
showEvents() {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
session.beginTransaction();
List
result = session.createQuery("from Event").list();
for (Event event : (List<Event>) result) {
System.out.println("Event Title: " + event.getTitle());
}
session.getTransaction().commit();
}
}
Spring和Hibernate相遇的更多相关文章
- 【译】Spring 4 + Hibernate 4 + Mysql + Maven集成例子(注解 + XML)
前言 译文链接:http://websystique.com/spring/spring4-hibernate4-mysql-maven-integration-example-using-annot ...
- 【Java EE 学习 53】【Spring学习第五天】【Spring整合Hibernate】【Spring整合Hibernate、Struts2】【问题:整合hibernate之后事务不能回滚】
一.Spring整合Hibernate 1.如果一个DAO 类继承了HibernateDaoSupport,只需要在spring配置文件中注入SessionFactory就可以了:如果一个DAO类没有 ...
- spring和Hibernate整合
首先导入spring和Hibernate的jar包,以及JDBC和c3p0的jar包, 然后就是Hibernate的XML配置文件,不需要加入映射文件,这里用spring容器管理了. Hibernat ...
- 轻量级Java EE企业应用实战(第4版):Struts 2+Spring 4+Hibernate整合开发(含CD光盘1张)
轻量级Java EE企业应用实战(第4版):Struts 2+Spring 4+Hibernate整合开发(含CD光盘1张)(国家级奖项获奖作品升级版,四版累计印刷27次发行量超10万册的轻量级Jav ...
- spring整合hibernate的详细步骤
Spring整合hibernate需要整合些什么? 由IOC容器来生成hibernate的sessionFactory. 让hibernate使用spring的声明式事务 整合步骤: 加入hibern ...
- spring整合hibernate
spring整合hibernate包括三部分:hibernate的配置.hibernate核心对象交给spring管理.事务由AOP控制 好处: 由java代码进行配置,摆脱硬编码,连接数据库等信息更 ...
- spring 整合hibernate
1. Spring 整合 Hibernate 整合什么 ? 1). 有 IOC 容器来管理 Hibernate 的 SessionFactory2). 让 Hibernate 使用上 Spring 的 ...
- 总结Spring、Hibernate、Struts2官网下载jar文件
一直以来只知道搭SSH需要jar文件,作为学习的目的,最好的做法是自己亲自动手去官网下.不过官网都是英文,没耐心一般很难找到下载入口,更何 况版本的变化也导致不同版本jar文件有些不一样,让新手很容易 ...
- spring和hibernate整合时无法自动建表
在使用spring整合hibernate时候代码如下: <property name="dataSource" ref="dataSource" /> ...
随机推荐
- Safari浏览器Session问题
Safari浏览器中经常出现session无法写入或同一个会话中Session ID常变动的事情.尤其以iOS7版本居多. 问题本身并不难猜,应该就是cookie无法写入引起的.奇怪的是,部分同版本的 ...
- 从BAE到SAE,从SAE又回到BAE
版权声明:本文为博主原创文章,未经博主允许不得转载. [很久以后] 这段话是很久之后补充的,发现错误要勇于改正,以下红色字体是对以前观点的改正, 大概总结下: 1.bae最大缺点是需要备案,不过现在看 ...
- android优化(json工具,message新建/传递,avtivity深入学习视频)
1,在线json校验工具:www.bejson.com 2, 在handler中经常使用的 message的传递上,message.what使用静态量 . private static final i ...
- jsp----在jsp中写java代码(变量和函数方法)
<%@page import="java.text.SimpleDateFormat"%><%@page language="java" im ...
- 重载public Primes ():this(2,100)
当构造函数有多个重载的时候 想通过默认构造函数调用其他的重载的构造函数的话 就可以用:运算符public Primes():this(2, 100){//code }public Primes(int ...
- Hibernate关联映射1:一对一主键关联
2张表之间通过主键形成一对一映射关系,如一个人只能有一张身份证: t_identity_card表建表语句: CREATE TABLE `t_identity_card` ( `id` int(11) ...
- Optimal Logging
by Anthony Vallone How long does it take to find the root cause of a failure in your system? Five mi ...
- Conversion to Dalvik format failed:Unable toexecute dex: method ID not in [0, 0xffff]: 65536
关于方法数超限,Google官方给出的方案是这样的:https://developer.android.com/intl/zh-cn/tools/building/multidex.html 我也写过 ...
- IrisSkin4控件使用方法
参考如下: 1. 将IrisSkin4.dll动态文件导入当前项目引用中.具体操作为:解决方案资源管理器->当前项目->引用->右键->添加引用,找到IrisSkin4.dll ...
- linux修改主机名(hostname)转载
Linux修改主机名的方法 用hostname命令可以临时修改机器名,但机器重新启动之后就会恢复原来的值. #hostname //查看机器名#hostname -i //查看本机器名对应的ip ...