:Hibernate逍遥游记-第16管理session和实现对话
1.
package mypack;
public class Monkey{ private Long id;
private String name;
private int count;
private int version; public Monkey() {} public Long getId() {
return this.id;
} public void setId(Long id) {
this.id = id;
} public String getName() {
return this.name;
} public void setName(String name) {
this.name = name;
} public int getCount() {
return this.count;
} public void setCount(int count) {
this.count = count;
} public int getVersion() {
return this.version;
} public void setVersion(int version) {
this.version = version;
}
}
2.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping
PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping > <class name="mypack.Monkey" table="MONKEYS" >
<id name="id" type="long" column="ID">
<generator class="increment"/>
</id> <version name="version" column="VERSION" /> <property name="name" type="string" column="NAME" /> <property name="count" type="int" column="COUNT" /> </class>
</hibernate-mapping>
3.
package mypack;
import org.hibernate.SessionFactory;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration; public class HibernateUtil {
private static SessionFactory sessionFactory; static{
try {
sessionFactory=new Configuration()
.configure()
.buildSessionFactory();
}catch (Throwable ex) {
throw new ExceptionInInitializerError(ex);
}
} public static SessionFactory getSessionFactory() {
return sessionFactory;
} public static Session getCurrentSession(){
return sessionFactory.getCurrentSession();
} }
4.
package mypack;
public class MonkeyDAO{
public Monkey getById(long id){
return (Monkey)HibernateUtil.getCurrentSession()
.get(Monkey.class,new Long(id));
} public void update(Monkey monkey){
HibernateUtil.getCurrentSession().saveOrUpdate(monkey);
}
}
5.
package mypack;
import org.hibernate.Session; public class MonkeyDAO2{
public Monkey getById(long id,Session session){
return (Monkey)session.get(Monkey.class,new Long(id));
} public void update(Monkey monkey,Session session){
session.saveOrUpdate(monkey);
}
}
6.
package mypack;
public class BusinessService{
private MonkeyDAO md=new MonkeyDAO(); public void vote(long monkeyId){
try {
//声明开始事务
HibernateUtil.getCurrentSession().beginTransaction(); Monkey monkey=md.getById(monkeyId);
monkey.setCount(monkey.getCount()+1); //提交事务
HibernateUtil.getCurrentSession().getTransaction().commit(); }catch (RuntimeException e) {
try{
//撤销事务
HibernateUtil.getCurrentSession().getTransaction().rollback();
}catch(RuntimeException ex){
ex.printStackTrace();
}
throw e;
} } public static void main(String args[]) {
new BusinessService().vote(1);
}
}

7.
package mypack;
import java.io.*;
import java.util.Scanner; public class BusinessService1{
private MonkeyDAO md=new MonkeyDAO(); public void vote()throws Exception{
System.out.println("请输入候选者的ID:");
//等待用户输入候选者的ID,此操作可能会化去很长时间,取决于用户的思考时间
long monkeyId=new Scanner(System.in).nextLong(); Monkey monkey=getMonkey(monkeyId); System.out.println("候选者的当前票数为:"+monkey.getCount()); System.out.println("您确信要投票吗(Y/N):");
//等待用户确认是否投票,此操作可能会花去很长时间,取决于用户的思考时间
String flag=new Scanner(System.in).next();
if(flag.equals("N"))return; monkey.setCount(monkey.getCount()+1);
updateMonkey(monkey); System.out.println("投票成功,候选者的当前票数为:"+monkey.getCount());
} public Monkey getMonkey(long monkeyId){
try{
//创建一个Session对象,声明开始查询候选者事务
HibernateUtil.getCurrentSession().beginTransaction(); Monkey monkey=md.getById(monkeyId); //提交事务,在Session与本地线程绑定的方式下,会自动关闭Session对象
HibernateUtil.getCurrentSession().getTransaction().commit(); return monkey;
}catch (RuntimeException e) {
try{
//撤销事务
HibernateUtil.getCurrentSession().getTransaction().rollback();
}catch(RuntimeException ex){
ex.printStackTrace();
}
throw e;
} } public void updateMonkey(Monkey monkey){
try{
//创建一个Session对象,声明开始修改票数事务
HibernateUtil.getCurrentSession().beginTransaction(); md.update(monkey); //提交事务,在Session与本地线程绑定的方式下,会自动关闭Session对象
HibernateUtil.getCurrentSession().getTransaction().commit(); }catch (RuntimeException e) {
try{
//撤销事务
HibernateUtil.getCurrentSession().getTransaction().rollback();
}catch(RuntimeException ex){
ex.printStackTrace();
}
throw e;
}
} public static void main(String args[]) throws Exception {
new BusinessService1().vote();
}
}
8.
package mypack;
import java.io.*;
import java.util.Scanner;
import org.hibernate.*; public class BusinessService2{
private MonkeyDAO2 md=new MonkeyDAO2(); public void vote()throws Exception{
Session session=null;
try{
System.out.println("请输入候选者的ID:");
//等待用户输入候选者的ID,此操作可能会化去很长时间,取决于用户的思考时间
long monkeyId=new Scanner(System.in).nextLong(); //创建一个Session对象,由程序自主管理Session对象的生命周期
session=HibernateUtil.getSessionFactory().openSession();
//设为手工清理缓存模式
session.setFlushMode(FlushMode.MANUAL); //声明开始查询候选者事务
session.beginTransaction();
Monkey monkey=md.getById(monkeyId,session);
//提交查询候选者事务,释放Session占用的数据库连接
session.getTransaction().commit(); System.out.println("候选者的当前票数为:"+monkey.getCount()); System.out.println("您确信要投票吗(Y/N):");
//等待用户确认是否投票,此操作可能会花去很长时间,取决于用户的思考时间
String flag=new Scanner(System.in).next();
if(flag.equals("N"))return; monkey.setCount(monkey.getCount()+1); //声明开始修改票数事务,为Session重新分配数据库连接
session.beginTransaction();
md.update(monkey,session); //清理缓存
session.flush(); //提交修改票数事务
session.getTransaction().commit(); System.out.println("投票成功,候选者的当前票数为:"+monkey.getCount());
}catch (RuntimeException e) {
try{
//撤销事务
session.getTransaction().rollback();
}catch(RuntimeException ex){
ex.printStackTrace();
}
throw e;
}finally{
session.close();
}
} public static void main(String args[]) throws Exception {
new BusinessService2().vote();
}
}
9.
/** 运行此程序时,
必须把hibernate.cfg.xml文件中的current_session_context_class属性设为managed
*/ package mypack;
import java.io.*;
import java.util.Scanner;
import org.hibernate.classic.Session;
import org.hibernate.context.ManagedSessionContext;
import org.hibernate.FlushMode; public class BusinessService3{
private MonkeyDAO md=new MonkeyDAO(); public void vote()throws Exception{
Session session=null;
try{
System.out.println("请输入候选者的ID:");
//等待用户输入候选者的ID,此操作可能会化去很长时间,取决于用户的思考时间
long monkeyId=new Scanner(System.in).nextLong(); //创建一个Session对象,由程序自主管理Session对象的生命周期
session=HibernateUtil.getSessionFactory().openSession();
//设为手工清理缓存模式
session.setFlushMode(FlushMode.MANUAL);
ManagedSessionContext.bind(session); //声明开始查询候选者事务
session.beginTransaction();
Monkey monkey=md.getById(monkeyId); ManagedSessionContext.unbind(HibernateUtil.getSessionFactory()); //提交查询候选者事务,释放Session占用的数据库连接
session.getTransaction().commit();
System.out.println("候选者的当前票数为:"+monkey.getCount()); System.out.println("您确信要投票吗(Y/N):");
//等待用户确认是否投票,此操作可能会花去很长时间,取决于用户的思考时间
String flag=new Scanner(System.in).next();
if(flag.equals("N"))return; monkey.setCount(monkey.getCount()+1); ManagedSessionContext.bind(session); //声明开始修改票数事务,为Session重新分配数据库连接
session.beginTransaction();
md.update(monkey); ManagedSessionContext.unbind(HibernateUtil.getSessionFactory()); //清理缓存
session.flush(); //提交修改票数事务
session.getTransaction().commit(); System.out.println("投票成功,候选者的当前票数为:"+monkey.getCount());
}catch (RuntimeException e) {
try{
//撤销事务
session.getTransaction().rollback();
}catch(RuntimeException ex){
ex.printStackTrace();
}
throw e;
}finally{
session.close();
}
} public static void main(String args[]) throws Exception {
new BusinessService3().vote();
}
}

10.
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="connection.url">
jdbc:mysql://localhost:3306/sampledb
</property>
<property name="connection.username">
root
</property>
<property name="connection.password">
1234
</property>
<property name="show_sql">true</property>
<!--
<property name="current_session_context_class">managed</property>
-->
<property name="current_session_context_class">thread</property>
<mapping resource="mypack/Monkey.hbm.xml" />
</session-factory>
</hibernate-configuration>
11.

12.

13.



:Hibernate逍遥游记-第16管理session和实现对话的更多相关文章
- Hibernate逍遥游记-第15章处理并发问题-003乐观锁
1. 2. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; drop table if exists ...
- Hibernate逍遥游记-第15章处理并发问题-002悲观锁
1. 2. hibernate.dialect=org.hibernate.dialect.MySQLDialect hibernate.connection.driver_class=com.mys ...
- Hibernate逍遥游记-第13章 映射实体关联关系-006双向多对多(分解为一对多)
1. 2. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate ...
- Hibernate逍遥游记-第13章 映射实体关联关系-005双向多对多(使用组件类集合\<composite-element>\)
1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...
- Hibernate逍遥游记-第13章 映射实体关联关系-004双向多对多(inverse="true")
1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...
- Hibernate逍遥游记-第13章 映射实体关联关系-003单向多对多
0. 1. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; create table MONKEYS ...
- Hibernate逍遥游记-第13章 映射实体关联关系-002用主键映射一对一(<one-to-one constrained="true">、<generator class="foreign">)
1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...
- Hibernate逍遥游记-第13章 映射实体关联关系-001用外键映射一对一(<many-to-one unique="true">、<one-to-one>)
1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...
- Hibernate逍遥游记-第12章 映射值类型集合-005对集合排序Map(<order-by>\<sort>)
1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...
随机推荐
- Redis源码研究--跳表
-------------6月29日-------------------- 简单看了下跳表这一数据结构,理解起来很真实,效率可以和红黑树相比.我就喜欢这样的. typedef struct zski ...
- php基础小知识
1.php中的双引号可以正确的解析变量与转义序列,而单引号只会按照声明原样显示:双里面的字段会经过编译器解释,然后再当作HTML代码输出:单引号里面的不进行解释,直接输出. 2.转义序列是针对源代码的 ...
- CentOS如何分区
安装Linux CentOS时,需要在硬盘建立CentOS使用的分区,在大多情况下,至少需要为CentOS建立以下3个分区. (1)/boot分区(不是必须的):/boot分区用于引导系统,它包含了操 ...
- trade 1.0 开源工具
dapper.net T4PocoGenerator/ Dapper.ColumnMapper 参考链接: http://blog.csdn.net/ymnets/article/details/85 ...
- Jquery LigerUI框架学习(一)
ligerUI框架是一个很丰富的后台框架模板,具有简洁大方的后台样式框架,还有很多灵活的控件,方便开发人员使用: 把昨天学习的成功拿出来供大家学习学习: 首先我们要去ligerUI官网下载Jquery ...
- .Net码农学Android---前言
自从毕业参加工作后,就一直想学移动领域得开发,但时间.精力.决心.学习成本等这些问题总在不同程度的阻碍着自己. 但这段时间自己想做一款属于自己的App的想法越来越强烈,我感到自己快压不住这股能量了.终 ...
- 关于sql语句in的使用注意规则
想必大家都用过sql中的in语句吧,我这里描述下我遇到的一种in语句问题,并总结一些给大家分享下,不对的地方还希望大虾指点下. 问题描述:IN子查询时,子查询中字段在表中不存在时语句却不报错 平常工作 ...
- 在eclipse中使用jax-ws构建webservices服务端和客户端
服务端: package com.yinfu.service; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebServi ...
- 对象图 Object Diagram
一.用一张图来介绍一下对象图的基本内容 二.对象图与类图的基本区别 三.对象图实例
- 【软件工程-Teamwork 3】团队角色分配和团队贡献分分配规则
Part 1 团队角色分配 1.人员分配概要: Project Manager:1名 / Developer:4名 / Test: 1名 2.具体人员分配及职责: Project Manager(PM ...