跳至主要内容

JPA Data Auditing


Auditing

Sometime we need to keep track with the change of the Entity, eg.
  • When it is created
  • Who created it
  • Last modified date
  • Last modified by somebody

Implement via JPA

JPA specification provides a complete lifecycle of an Entity, which is easy to archive those purposes.
An example(dummy codes).
@Entity
public class Conference{
 
 private User createdBy;
 private Date createdDate;
 private user lastModifiedBy;
 private Date lastModifiedDate;
 
 
 @PrePersist
 public void prePersist(){
  setCreatedBy(currentUser);
  setCreatedDate(new Date());
 }
 
 @PreUpdate
 public void preUpdate(){
  setLastModifiedBy(currentUser);
  setLastModifiedDate(new Date());
 }

}
In this example, the method prePersist annotated with @PrePresistindicates it will be executed before em.persist(em is stand for jpa EntityManager) is executed.
And @PreUpdate will be executed before em.merge is executed.
JPA also provides a EntityListener feature. Using EntityListener, the lifecycle hook methods can be placed in a centered class.
Here we created two base entity classes, PersistableEntity identifies the entity can be persisted, it includes a id and version property. AndAuditableEntity extends PersistableEntity, adds some addtional properties.
@MappedSuperclass
public class PersistableEntity implements Serializable{
 @Id
 @GeneratedValue(strategy = GenerationType.AUTO)
 @Column(name = "id")
 private Long id;
 
 @Version
 private Long version;
}
@MappedSuperclass
@EntityListeners(value = { AuditEntityListener.class })
public class AuditableEntity extends PersistableEntity{

 @ManyToOne
 @JoinColumn(name = "created_by")
 private User createdBy;

 @Temporal(TemporalType.TIMESTAMP)
 @Column(name = "created_date")
 private Date createdDate;

 @ManyToOne
 @JoinColumn(name = "last_modified_by")
 private User lastModifiedBy;

 @Temporal(TemporalType.TIMESTAMP)
 @Column(name = "last_modified_date")
 private Date lastModifiedDate;
}
AuditableEntity is the base Entity class which defines the all auditing properties. It will apply an EntityListener AuditEntityListener class at runtime.
public class AuditEntityListener {
 private static final Logger log = LoggerFactory
   .getLogger(AuditEntityListener.class);

 @PrePersist
 public void prePersist(AuditableEntity e) {

  e.setCreatedBy(SecurityUtil.getCurrentUser());
  e.setCreatedDate(new DateTime());

 }

 @PreUpdate
 public void preUpdate(AuditableEntity e) {
  e.setLastModifiedBy(SecurityUtil.getCurrentUser());
  e.setLastModifiedDate(new DateTime());
 }
}
The @PrePersist and @PreUpdate methods can accept an object which will be passed into the related method of EntityManager.
Any classes extends AuditableEntity will be listened byAuditEntityListener.
@Entity
public class Signup extends AuditableEntity {
}
Obviously, the second solution is more flexible and maintainable.

Auditing from Spring Data JPA

Spring Data Commons defines some classes for auditing, currently only the Spring Data JPA module provides complete implementation.

Utilize the Spring Data facility

Spring Data provides two basic interfaces.
  • Persistable indicates the class is a persistable class, anyPersistable class could be indentified by a id property.
  • Auditable is an interface defines all required properties for auditing an Entity, it is inherited from Presistable interface.
Spring Data JPA provides two abstract classes to implement these interfaces.
  • AbstractPersistable implements Persisteable, annotates idproperty with @Id to indicate it is a JPA primary key.
  • AbstractAuditable implements Auditable, and the auditor type is a acceptable type argument passed into AbstractAuditable.
An example to demonstrate these.
@Entity
public class Conference extends AbstractAuditable<User, Long>{

}
Spring Data JPA provides a generic EntityListener to track theAuditable interfaces.
You must configure it in the orm.xml(/src/main/resouces).
<?xml version="1.0" encoding="UTF-8"?>
<entity-mappings 
 xmlns="http://java.sun.com/xml/ns/persistence/orm" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_2_0.xsd" version="2.0">
    <persistence-unit-metadata>
        <persistence-unit-defaults>
            <entity-listeners>
                <entity-listener class="org.springframework.data.jpa.domain.support.AuditingEntityListener" />
            </entity-listeners>
        </persistence-unit-defaults>
    </persistence-unit-metadata>
</entity-mappings>
You have to create a empty persistence.xml in the same folder, or theAuditingEntityListener does not work as expected, even you have declared a LocalContainerEntityManagerFactoryBean which does not force you to provide a persistence.xml configuration. Maybe this is an issue of Spring.
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" 
 xmlns="http://java.sun.com/xml/ns/persistence" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
 <persistence-unit name="persistenceUnit" transaction-type="RESOURCE_LOCAL"/>
</persistence>
Next, you must create an AuditorWare implementation bean which implements how to fetch auditor, generally it is the current user in the real world application. Spring will inject the auditor into AuditingEntityListener at runtime.
@Named(value="auditorBean")
public class AuditorBean implements AuditorAware<User> {
 private static final Logger LOGGER=LoggerFactory.getLogger(AuditorBean.class);

 private User currentAuditor;
 
 @Override
 public User getCurrentAuditor() {
//  Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
//
//     if (authentication == null || !authentication.isAuthenticated()) {
//       return null;
//     }
//
//     return ((MyUserDetails) authentication.getPrincipal()).getUser();
  LOGGER.debug("call AuditorAware.getCurrentAuditor(");
  return currentAuditor;
 }

 public void setCurrentAuditor(User currentAuditor) {
  this.currentAuditor = currentAuditor;
 }
 
}
In the real world application, the current authenticated user can be fetched from SecurtiyContextHolder.
Declare a <jpa:auditing/> in Spring configuration to enable auditing feature in the project.
<jpa:auditing auditor-aware-ref="auditorBean"/>
Now write some codes to test the auditing.
@Test
@Transactional
public void retrieveConference() {
 Conference conference = newConference();
 conference.setSlug("test-jud");
 conference.setName("Test JUD");
 conference.getAddress().setCountry("US");
 conference = conferenceRepository.save(conference);
 em.flush();

 assertTrue(null != conference.getId());
 conference = conferenceRepository.findBySlug("test-jud");

 log.debug("conference @" + conference);
 assertTrue(null != conference);

 assertTrue(conference.getCreatedBy() != null);
 assertTrue("hantsy".equals(conference.getCreatedBy().getUsername()));
 assertTrue(conference.getCreatedDate() != null);
 assertTrue(conference.getLastModifiedBy() != null);

 assertTrue("hantsy"
   .equals(conference.getLastModifiedBy().getUsername()));
 assertTrue(conference.getLastModifiedDate() != null);

 assertTrue(conference.getCreatedDate().equals(
   conference.getLastModifiedDate()));

 conference
   .setDescription("change desc, the modified date should be updated.");
 conferenceRepository.save(conference);
 em.flush();

 conference = conferenceRepository.findBySlug("test-jud");
 log.debug("created date @" + conference.getCreatedDate());
 log.debug("modified date @" + conference.getLastModifiedDate());
 assertTrue(!conference.getCreatedDate().equals(
   conference.getLastModifiedDate()));
}

Add auditing to existing classes

If you have some existing entities, and do not modify them to extendAbstractAuditable, you can add some annotations to existing classes to implement the auditing feature.
@Entity
public class Signup {

 @Id
 @GeneratedValue(strategy = GenerationType.AUTO)
 @Column(name = "id")
 private Long id;

 @DateTimeFormat(style = "M-")
 @CreatedDate
 private Date createdDate;
 
 @LastModifiedDate
 @DateTimeFormat(style = "M-")
 private Date modifiedDate;
 
 @CreatedBy()
 @ManyToOne
 private User createdBy;
 
 @LastModifiedBy
 @ManyToOne
 private User modifiedBy;

}
The date fields can accept java.util.Date, joda DateTime orLong/long type.
Here some test codes.
@Test
@Transactional
public void testSignup() {
 Conference conference = newConference();
 conference.setSlug("test-jud");
 conference.setName("Test JUD");
 conference.getAddress().setCountry("US");
 Signup signup = newSignup();
 conference.addSignup(signup);
 conference = conferenceRepository.save(conference);
 em.flush();

 assertTrue(null != conference.getId());
 assertTrue(null != signup.getId());

 Signup signup2=signupRepository.findById(signup.getId());
 
 assertTrue(signup2.getCreatedBy() != null);
 assertTrue("hantsy".equals(signup2.getCreatedBy().getUsername()));
 assertTrue(signup2.getCreatedDate() != null);
 assertTrue(signup2.getModifiedBy() != null);

 assertTrue("hantsy"
   .equals(signup2.getModifiedBy().getUsername()));
 assertTrue(signup2.getModifiedDate() != null);

 assertTrue(signup2.getCreatedDate().equals(
   signup2.getModifiedDate()));

 signup2.setComment("add comment to signup, and the signup is changed, the modified date should be updated.");
 signupRepository.save(signup2);
 em.flush();

 signup2=signupRepository.findById(signup.getId());
 log.debug("created date @" + signup2.getCreatedDate());
 log.debug("modified date @" + signup2.getModifiedDate());
 assertTrue(!signup2.getCreatedDate().equals(
   signup2.getModifiedDate()));
}

Summary

The Auditing feature from Spring Data JPA is very simple and stupid, and it is useful in the real world application.

评论

此博客中的热门博文

AngularJS CakePHP Sample codes

Introduction This sample is a Blog application which has the same features with the official CakePHP Blog tutorial, the difference is AngularJS was used as frontend solution, and CakePHP was only use for building backend RESR API. Technologies AngularJS   is a popular JS framework in these days, brought by Google. In this example application, AngularJS and Bootstrap are used to implement the frontend pages. CakePHP   is one of the most popular PHP frameworks in the world. CakePHP is used as the backend REST API producer. MySQL   is used as the database in this sample application. A PHP runtime environment is also required, I was using   WAMP   under Windows system. Post links I assume you have some experience of PHP and CakePHP before, and know well about Apache server. Else you could read the official PHP introduction( php.net ) and browse the official CakePHP Blog tutorial to have basic knowledge about CakePHP. In these posts, I tried to follow the steps describ

JPA 2.1: Attribute Converter

JPA 2.1: Attribute Converter If you are using Hibernate, and want a customized type is supported in your Entity class, you could have to write a custom Hibernate Type. JPA 2.1 brings a new feature named attribute converter, which can help you convert your custom class type to JPA supported type. Create an Entity Reuse the   Post   entity class as example. @Entity @Table(name="POSTS") public class Post implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name="ID") private Long id; @Column(name="TITLE") private String title; @Column(name="BODY") private String body; @Temporal(javax.persistence.TemporalType.DATE) @Column(name="CREATED") private Date created; @Column(name="TAGS") private List<String> tags=new ArrayList<>(); } Create an attribute convert

Auditing with Hibernate Envers

Auditing with Hibernate Envers The approaches provided in JPA lifecyle hook and Spring Data auditing only track the creation and last modification info of an Entity, but all the modification history are not tracked. Hibernate Envers fills the blank table. Since Hibernate 3.5, Envers is part of Hibernate core project. Configuration Configure Hibernate Envers in your project is very simple, just need to add   hibernate-envers   as project dependency. <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-envers</artifactId> </dependency> Done. No need extra Event listeners configuration as the early version. Basic Usage Hibernate Envers provides a simple   @Audited   annotation, you can place it on an Entity class or property of an Entity. @Audited private String description; If   @Audited   annotation is placed on a property, this property can be tracked. @Entity @Audited public class Signup implements Serializa