`
SSailYang
  • 浏览: 312707 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

JBoss Envers 学习笔记

    博客分类:
  • Java
阅读更多

下文转自:http://www.blogjava.net/xmatthew/archive/2008/11/14/238432.html

 

试用JBoss Envers项目有一阵子了,趁Envers项目发布 1.1.0版,也同时把学习笔记共享给大家,希望对大家有所帮助。
    下面来看一下JBoss Envers项目的目的,官方说明如下:

<!---->The Envers project aims to enable easy versioning of persistent classes.
All that you have to do is annotate your persistent class or some of its properties,
that you want to version, with @Versioned. For each versioned entity, a table will be created,
which will hold the history of changes made to the entity. You can then retrieve and
query historical data without much effort.


   JBoss Envers目的是根据对实体的设置,提供记录执行数据变更历史的功能(数据变更版本)。Envers的配置非常简单,如果需要对某个实例进行历史数据版 本记录,只需要在实例上配置@Versioned annotation即可。 针对每个实体的版本的历史数据,Envers都会创建一个单独的数据表进行存储。
目前Envers支持Hibernate和Hibernate-entitymanager(JPA实现)

本示例以Hibernate-entitymanager为例,讲解其配置的方法:

先配置 persistence.xml, 加入 property配置

<!---->   < persistence-unit  >   
       
< provider > org.hibernate.ejb.HibernatePersistence </ provider >   
       
< class > </ class >   
       
< properties >   
           
< property  name ="hibernate.dialect"     />   
           
<!--  other hibernate properties  -->   
    
           
< property  name ="hibernate.ejb.event.post-insert"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
           
< property  name ="hibernate.ejb.event.post-update"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
           
< property  name ="hibernate.ejb.event.post-delete"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
           
< property  name ="hibernate.ejb.event.pre-collection-update"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
           
< property  name ="hibernate.ejb.event.pre-collection-remove"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
           
< property  name ="hibernate.ejb.event.post-collection-recreate"    
              value
="org.jboss.envers.event.VersionsEventListener"   />   
       
</ properties >   
   
</ persistence-unit >


示例代码:

<!----> 1    import  org.jboss.versions.Versioned;  
 2     
 3    import  javax.persistence.Entity;  
 4    import  javax.persistence.Id;  
 5    import  javax.persistence.GeneratedValue;  
 6    import  javax.persistence.Column;  
 7     
 8   @Entity  
 9   @Versioned
10    public   class  Blog {  
11       @Id  
12       @Column(length = 32 )
13        private  String id;  
14     
15       @Versioned
16       @Column(length = 100 )
17        private  String title; 
18        
19       @Column(length = 2000 )
20        private  String date;  
21     
22       @Versioned
23       @ManyToOne  
24        private  String body;  
25     
26          @ManyToOne 
27           private  Author author;
28        //  add getters, setters, constructors, equals and hashCode here  
29   } 
30   
31   @Entity
32   @Versioned
33    public   class  Author {
34   
35       @Id
36       @Column(length = 32 )
37        private  String id;
38       
39       @Versioned
40       @Column(length = 20 )
41        private  String name;
42       
43  }    


下面是进行测试的代码:

<!---->1  
   // 新增操作
   entityManager.getTransaction().begin();  
2    
3   Author matthew  =   new  Author( " 1 " " Matthew Xie " );  
4   Blog newBlog  =   new  Blog( " 1 " " Matthew's new Blog "   " TODO{add content here} " , matthew);    
5     
6   entityManager.persist(matthew);  
7   entityManager.persist(newBlog);  
8     
9   entityManager.getTransaction().commit();

 

<!----> 1    // 对Blog和author进行修改操作
 2   entityManager.getTransaction().begin();  
 3     
 4   Author author  =  entityManager.find(Author. class " 1 " );  
 5   Blog blog  =  entityManager.find(Blog. class " 1 " );  
 6     
 7    //  Changing the address's house number  
 8   author.setName( " Matt Xie " )
 9   
10   Author newAuthor  =   new  Author( " 2 " " newAuthor " );  
11     
12    //  change blog author to newAuthor 
13   blog.setAuthor(newAuthor);  
14     
15   entityManager.getTransaction().commit();

 

<!---->1    // 下面代码,演示了如何取得历史版本数据
2   VersionsReader reader  =  VersionsReaderFactory.get(entityManager); 
3   
4    //  get Blog all versions id
5   List < Number >  versions  =  reader.getRevisions(Blog. class " 1 " /* blog id */ );
6    for  (Number version : versions) {
7           Blog blog  =  reader.find(Blog. class " 1 " , version);  
8   }





注: 补充 Hibernate Envers的Property配置说明

Property name Default value Description
org.jboss.envers.versionsTablePrefix
String that will be prepended to the name of a versioned entity to create the name of the entity, that will hold version information.
org.jboss.envers.versionsTableSuffix _versions String that will be appended to the name of a versioned entity to create the name of the entity, that will hold version information. If you version an entity with a table name Person , in the default setting Envers will generate a Person_versions table to store historical data.
org.jboss.envers.revisionFieldName _revision Name of a field in the versions entity that will hold the revision number.
org.jboss.envers.revisionTypeFieldName _revision_type Name of a field in the versions entity that will hold the type of the revision (currently, this can be: add, mod, del).
org.jboss.envers.revisionOnCollectionChange true Should a revision be generated when a not-owned relation field changes (this can be either a collection in a one-to-many relation, or the field using "mappedBy" attribute in a one-to-one relation).
org.jboss.envers.warnOnUnsupportedTypes false When true, a warning in the log will be issued when a property is versioned with an unsupported type, instead of an exception. This way, the configuration process isn't interrupted, but the version schema isn't complete (it lacks the unsupported properties, which won't be versioned).
org.jboss.envers.unversionedOptimisticLockingField false When true, properties to be used for optimistic locking, annotated with @Version, will be automatically unversioned (their history won't be stored; it normally doesn't make sense to store it).


JBoss Envers官方网址: http://www.jboss.org/envers

Good Luck!
Yours Matthew!

分享到:
评论

相关推荐

    JBOSS7学习笔记

    【JBoss7学习笔记】 JBoss Application Server,简称JBoss AS,是Red Hat公司开发的一款开源Java EE应用服务器,而JBoss7则是其一个重要的版本,带来了许多性能优化和架构改进。这篇学习笔记将深入探讨JBoss7的核心...

    JPA配置装载 Jboss Envers Jasperreport ireport 项目

    综上所述,本项目结合了JPA进行数据操作,利用Jboss Envers进行数据审计,以及JasperReport和iReport进行报表设计和展示,构建了一个功能丰富的信息系统。这些技术的集成可以提供数据管理、历史追踪以及可视化的报表...

    JBossESB学习笔记(1-16全)

    JBossESB学习笔记 收集了网上1-16系列教程,笔记详细介绍了JBossESB各个组件的特性及配置文件的说明

    JBoss ESB 学习笔记

    ### JBoss ESB 学习笔记知识点概览 #### 一、搭建ESB开发环境 - **工具准备**: - Eclipse-JEE 3.5:集成开发环境,支持Java EE标准,适合企业级应用程序开发。 - jbossesb-server-4.7:JBoss ESB的具体版本,为...

    JBossESB学习笔记.rar_Jboss_ESB_esb和aop

    【JBoss ESB 学习笔记】 JBoss ESB(Enterprise Service Bus,企业服务总线)是Red Hat公司开发的一款开源服务导向架构(SOA)平台,它为分布式应用程序提供了集成和互操作性。本笔记将深入探讨JBoss ESB的核心概念...

    Jboss_ESB学习笔记

    【JBoss ESB学习笔记】 JBoss ESB(Enterprise Service Bus)是Red Hat公司开发的一款开源企业服务总线,它是企业级应用集成的核心组件,用于连接不同系统、服务和应用程序,实现服务之间的通信和交互。本学习笔记...

    JBoss ESB学习笔记1-搭建ESB开发环境.docx

    本篇笔记将详细介绍如何搭建JBoss ESB的开发环境。 首先,我们需要准备的是Eclipse IDE,这里推荐使用Eclipse-JEE 3.5版本,因为该版本对Java EE开发有着良好的支持,同时包含了对各种服务器的集成。如果你还没有...

    JBOSS_Esb学习资料

    4. **Spring整合**:《JBoss_ESB学习笔记13——第十个ESB应用Spring_AOP.doc》和《JBoss_ESB学习笔记12——第十个ESB应用Spring_helloworld.doc》涉及到Spring框架与ESB的结合,Spring AOP(面向切面编程)在ESB中的...

    jBoss+tomcat学习笔记大全,jBoss+tomcat的帮助文档

    ### jBoss + Tomcat 学习笔记大全及帮助文档概览 #### 一、环境搭建与配置 在开始深入探讨jBoss与Tomcat的集成之前,我们先来了解如何搭建基本的开发环境。 ##### 1. Java 环境配置 - **安装 J2SDK1.4+ 和 J2...

    Jboss-ESB学习笔记.doc

    本篇学习笔记主要围绕 JBoss ESB 的一个基础应用——“Hello World File Action”进行讲解,这个例子展示了如何利用 JBoss ESB 的 File Gateway 功能来监控文件系统变化,并通过 JMS(Java Message Service)消息...

    JBoss学习全集多本书整合

    【JBoss学习全集多本书整合】集合了丰富的JBoss相关知识,涵盖了JBoss服务器的配置、管理和优化等多个方面,是深入理解与掌握JBoss的理想资料。JBoss,作为一个开源的应用服务器,基于Java EE(现在被称为Jakarta EE...

    JBOSSESB学习小结

    NULL 博文链接:https://siye1982.iteye.com/blog/592400

    jboss7学习配置.ppt

    在windows 下对于jboss7配置的学习ppt,包括如何建立一个Datasource

    JBoss文档.rar

    在JBoss文档中,我们可以深入学习以下几个关键知识点: 1. **Java Enterprise Edition (Java EE) 基础**:Java EE是企业级应用开发的标准框架,包含了一系列接口和实现,如Servlet、JSP、EJB等,用于构建可扩展且...

    Jboss项目部署文档

    Jboss 项目部署文档 Jboss 项目部署文档是指在 Jboss 服务器上部署项目的详细步骤,包括环境变量的配置、项目打包、配置文件的修改、JNDI 的配置等。以下是 Jboss 项目部署文档的详细知识点: 一、环境变量配置 ...

    JBOSS,JBoss安装部署

    【JBOSS,JBoss安装部署】 ...以上就是JBoss安装和部署的基本步骤,深入使用还需要学习更多高级特性,如模块化、集群、数据源配置等。通过不断实践和学习,你将能够更好地掌握和运用JBoss来支撑你的Java EE应用程序。

Global site tag (gtag.js) - Google Analytics