Skip to content

janithb/audit4j-hibernate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Audit4j-Hibernate

Using hibernate extention for audit4j, you can audit hibernate entitities.

Quick Start

Add Audit4j to your hibernate project. for maven projects just add below dependencies:

<dependency>
	<groupId>org.audit4j</groupId>
	<artifactId>audit4j-core</artifactId>
	<version>2.4.1</version>
</dependency>
<dependency>
	<groupId>org.audit4j</groupId>
	<artifactId>audit4j-hibernate</artifactId>
	<version>2.4.1</version>
</dependency>

Basic usage of audit4j hibernate extention would be,

import org.audit4j.core.annotation.Audit;
...

@Entity
@Audit
public class Person {
     ...
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%