前言


hibernate是一个实现了JPA标准的,用于对象持久化的orm框架。博主近一年开发都在使用。

前段时间在工作中遇到了一个hibernate的问题,从数据库查找得到对象后,修改了其中部分字段值之后没保存(没有调用merge),再以同样的方式从数据库查找刚才的对象,发现其中的属性居然已经发生了变化。

想到hibernate默认具有一级缓存,觉得问题应该出在了这里。

hibernate的一级缓存就是session缓存。当要查询的数据在缓存中已经存在时,hibernate将不会再向数据库发送查询语句,而是直接从缓存中获取对象。

由此引发了对hibernate中session对象的思考,查看官方注释以及网上的一些资料,注释原文和自己手写的翻译都写在下面了,同学们可以自行选择阅读。

Persistence 


持久化这个概念,算是老生常谈了。通俗的理解就是将数据保存到数据库中。在官网看到了这样一段话,觉得解释的特别贴切:

Persistence simply means that we would like our application’s data to outlive the applications process. In Java terms, we would like the state of (some of) our objects to live beyond the scope of the JVM so that the same state is available later.

简单来说,持久化意味着我们想让我们应用程序的数据的生命周期超过应用程序进程。用Java术语来说,我们想要我们的(某些)对象的状态超出JVM的范围,以便稍后可以使用相同的状态。

超出进程和JVM还能获取到数据,那肯定是保存在数据库咯。

session概述


The main runtime interface between a Java application and Hibernate. This is the central API class abstracting the notion of a persistence service.

session是一个在java应用Hibernate之间的核心接口,是抽象持久化服务的核心API类。

The lifecycle of a Session is bounded by the beginning and end of a logical transaction. (Long transactions might span several database transactions.)

session的生命周期是由逻辑事务开始结束所限定的。(长事务可能跨越多个数据库事务。)

The main function of the Session is to offer create, read and delete operations for instances of mapped entity classes.
session的主要功能是对已经被映射到实体类的实例(对象)提供创建、读取和删除操作。

实例的三种状态


Instances may exist in one of three states:

1.transient: never persistent, not associated with any Session
2.persistent: associated with a unique Session
3.detached: previously persistent, not associated with any Session

实例的状态可能是下面三种之一:
1.瞬态:数据库无记录,也不在Session缓存中
2.持久态:数据库有记录,session缓存中也有,且与唯一的Session关联
3.游离态:数据库有记录,但不在session缓存中,但是不与任何Session关联

tips:之前看到有很多博客说实例存在4种状态,也说有3中的,说是hibernate低版本中说是3种,但是博主对比了3.6.10和最新稳定版5.2.12,发现两个写的都是3种状态。

状态间的转换


Transient instances may be made persistent by calling save(), persist() or saveOrUpdate().
Persistent instances may be made transient by calling delete().
Detached instances may be made persistent by calling update(), saveOrUpdate(), lock() or replicate().

瞬态-->持久态: 可以调用save(),persist(),或saveorupdate()
持久态-->瞬态: 可以调用delete()
游离态-->持久态:可以通过调用update(),saveorupdate(),lock()或replicate()。

Any instance returned by a get() or load() method is persistent.
注:通过Session的get()或load()方法返回的所有实例都是持久态。

The state of a transient or detached instance may also be made persistent as a new persistent instance by calling merge().
瞬时态或游离态的的实例也可以通过merge()方法,持久化成为一个新的持久态的实例。

对应在SQL中的操作


save() and persist() result in an SQL INSERT, delete() in an SQL DELETE and update() or merge() in an SQL UPDATE. Changes to persistent instances are detected at flush time and also result in an SQL UPDATE. saveOrUpdate() and replicate() result in either an INSERT or an UPDATE.

save()和persist()在SQL中是insert操作,delete()在SQL中是delete操作,update()或者merge()在SQL中是update操作。在刷新时间中持久态实例变为游离态的,在SQL中的结果也是update。saveorupdate()和replicate()的结果是insert操作或update操作。

It is not intended that implementors be threadsafe. Instead each thread/transaction should obtain its own instance from a SessionFactory.

这并不表示这种实现是线程安全的。每个线程/交易都应从SessionFactory获取自己的实例。

A Session instance is serializable if its persistent classes are serializable.

如果一个session实例的持久化实例是可序列化的,那么这个session实例也是可序列化的。

一个典型的事务的使用应该如下:

If the Session throws an exception, the transaction must be rolled back and the session discarded. The internal state of the Session might not be consistent with the database after the exception occurs.

如果这个Session抛出了异常,这个交易必须回滚!!并且废弃掉这个session。发生异常后,session的内部情况可能和数据库不一致。

hibernate解读之session--基于最新稳定版5.2.12的更多相关文章

  1. Hadoop介绍及最新稳定版Hadoop 2.4.1下载地址及单节点安装

     Hadoop介绍 Hadoop是一个能对大量数据进行分布式处理的软件框架.其基本的组成包括hdfs分布式文件系统和可以运行在hdfs文件系统上的MapReduce编程模型,以及基于hdfs和MapR ...

  2. Android Studio最新稳定版下载 - 百度网盘(更新于2017年7月14日)

    Android Studio是一个为Android平台开发程序的集成开发环境,其包含用于构建Android应用所需的所有工具.Android Studio 2.3.3为最新稳定版(截止到2017年7月 ...

  3. Ubuntu 14.04 安装最新稳定版Nginx 1.6.0

    如果已经安装,请先卸载sudo apt-get remove nginx最新的稳定版Nginx 1.6.0在ubuntuupdates ppa库中提供,网址http://www.ubuntuupdat ...

  4. nvm安装最新稳定版node

    安装当前最新的稳定版. nvm install stable

  5. centos7安装最新稳定版nginx

    开始安装 yum 安装 nginx yum安装nginx文档地址 # 一切以最新的文档页面为准--搜centos http://nginx.org/en/linux_packages.html yum ...

  6. 2020年ubuntu1804安装nginx最新稳定版1.16详细教程笔记

    第一次使用nginx是2007年,当时主流还是apache.nginx横空出世,在web2.0的推动下,迅速崛起.眼下已是绝对的主流了. 当时,还有一个轻量级的lighttpd,是德国人写,刚开始还并 ...

  7. 【Linux】Centos7 安装redis最新稳定版及问题解决

    ------------------------------------------------------------------------------------------------- | ...

  8. windows 10专业版14393.447 64位纯净无广告版系统 基于官方稳定版1607制作 更新于20161112

    系统特点: 447更新日志(Win10 PC一周年更新正式版14393.447 32位/64位更新补丁KB3200970下载 Flash补丁Kb3202790下载): 1.通过网友的反馈,保留了Edg ...

  9. 查阅Springboot官方文档方式----------------Springboot2.0.2最新稳定版

    1.登录官方网址: https://spring.io/ 如图所示: 2.选择PROJECTS,就可以看到spring所有的相关项目了. 点开后:其中就包括了Spingboot 3.版本选择,红圈部分 ...

随机推荐

  1. C盘无损扩容

    工具: 分区助手专业版5.5 下载地址:http://pan.baidu.com/s/1slHPGDn 步骤 打开分区助手,点"扩展分区向导". 弹出对话框,因为是扩展C盘所以选& ...

  2. 北漂的IT人

    北京的互联网人,是工作日完全没有个人生活的一类人,也是整个北漂大队伍中,下班时间最晚的那一波人,如果赶上周末还要加班,那毫不夸张地说,你的整个人生都在互联网上奋斗着. 虽说十点上班让多少行内外的人羡慕 ...

  3. 浅淡python中的with,上下文管理器

    例子一 首先来看一段代码: class Foo(object): def __init__(self): print('实例化一个对象') def __enter__(self): print('进入 ...

  4. C函数原理

    C语言作为面向过程的语言,函数是其中最重要的部分,同时函数也是C种的一个难点,这篇文章希望通过汇编的方式说明函数的实现原理. 栈结构与相关的寄存器 在计算中,栈是十分重要的一种数据结构,同时也是CPU ...

  5. JAVA中的按值传递

    Java中只有按值传递,没有按引用传递! 方法参数共有两种类型: 基本数据类型 对象引用 一:基本数据类型 首先看一个小例子: package chuandi; public class Test1 ...

  6. mysql 半同步复制 插件安装以及测试

    mysql Server version:         5.5.18-log MySQL Community Server (GPL)   1.安装插件 检查mysql是否支持动态添加插件: ro ...

  7. IntelliJ IDEA 使用技巧

    本着工欲善其事必先利其器的精神,闷头写代码之外花点时间研究一下自己用的 IDE,其带来的效率提升非常可观. 高效定位代码 无处不在的跳转 项目之间跳转 下一个 ctrl + alt + ] 上一个 c ...

  8. Oracle01——基本查询、过滤和排序、单行函数、多行函数和多表查询

    作者: kent鹏 转载请注明出处: http://www.cnblogs.com/xieyupeng/p/7272236.html Oracle的集群 Oracle的体系结构 SQL> --当 ...

  9. MIPI协议-DSI

    对于现代的智能手机来说,其内部要塞入太多各种不同接口的设备,给手机的设计 和元器件选择带来很大的难度.下图是一个智能手机的例子,我们可以看到其内部存储.显示.摄像.声音等内部接口都是各不相同的.即使以 ...

  10. ubuntu下查看-卸载软件(卸载.net core sdk的方法)

    查看已安装的包:dpkg --list 查看正则匹配的包:dpkg --list 'dotnet-*' //查看以dotnet-开头的包 卸载匹配的包:sudo apt-get --purge rem ...