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和实现对话的更多相关文章

  1. Hibernate逍遥游记-第15章处理并发问题-003乐观锁

    1. 2. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; drop table if exists ...

  2. Hibernate逍遥游记-第15章处理并发问题-002悲观锁

    1. 2. hibernate.dialect=org.hibernate.dialect.MySQLDialect hibernate.connection.driver_class=com.mys ...

  3. Hibernate逍遥游记-第13章 映射实体关联关系-006双向多对多(分解为一对多)

    1. 2. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate ...

  4. Hibernate逍遥游记-第13章 映射实体关联关系-005双向多对多(使用组件类集合\<composite-element>\)

    1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...

  5. Hibernate逍遥游记-第13章 映射实体关联关系-004双向多对多(inverse="true")

    1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...

  6. Hibernate逍遥游记-第13章 映射实体关联关系-003单向多对多

    0. 1. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; create table MONKEYS ...

  7. Hibernate逍遥游记-第13章 映射实体关联关系-002用主键映射一对一(<one-to-one constrained="true">、<generator class="foreign">)

    1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...

  8. Hibernate逍遥游记-第13章 映射实体关联关系-001用外键映射一对一(<many-to-one unique="true">、<one-to-one>)

    1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...

  9. Hibernate逍遥游记-第12章 映射值类型集合-005对集合排序Map(<order-by>\<sort>)

    1. <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hi ...

随机推荐

  1. SpringUtil

    /** SpringUtil.java {{IS_NOTE Purpose: Description: History: Thu Jun 1 13:53:53 2006, Created by hen ...

  2. Sandcastle是什么

    如果你的项目是.net开发,同时需要生成HTML的方法成员文档时,哪么就不得不拿出Sandcastle 因为Sandcastle是微软开发,并开源的文档生成工具; 这种生成进度等待的感觉很爽! 在这里 ...

  3. openerp学习笔记 调用工作流

    获取工作流服务:wf_service = netsvc.LocalService("workflow")删除对象对应记录的工作流:wf_service.trg_delete(uid ...

  4. boost muti-thread

    背景 •       今天互联网应用服务程序普遍使用多线程来提高与多客户链接时的效率:为了达到最大的吞吐量,事务服务器在单独的线程上运行服务程序: GUI应用程序将那些费时,复杂的处理以线程的形式单独 ...

  5. stringlist

    #ifndef _STRINGLIST_HPP_#define _STRINGLIST_HPP_ #include "../global.hpp"#include <type ...

  6. StackExchange.Redis的使用

    StackExchange.Redis介绍 有需要了解的和基础的使用可以参考:http://www.cnblogs.com/bnbqian/p/4962855.html StackExchange.R ...

  7. iOS8中的UIAlertController

    转:      iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controlle ...

  8. IP地址格式控制

    /// <summary> /// 验证IP格式是否输入正确 /// </summary> /// <param name="ip"></ ...

  9. [原创] zabbix学习之旅四:mail客户端安装

    相信大家使用zabbix的最主要目的就是当被监控机器发生故障时,能通过zabbix获得第一时间的报警提醒.zabbix常用的报警媒介有email,短信,jabber和脚本,这其中脚本类型最为灵活,尤其 ...

  10. 移植linux4.7.2与ubifs到jz2440

    前言 整个暑假跟着韦东山的视频和书籍移植了linux2.3.6到jz2440,现在自己尝试移植linux4.7.2到板子上,并使用ubifs文件系统代替旧的jffs2文件系统. 下载交叉编译工具链 工 ...