From e88830c968c1aabc5c32df8a061a8b446c26505c Mon Sep 17 00:00:00 2001 From: Victor Tatai Date: Mon, 25 Feb 2013 16:23:29 -0300 Subject: [PATCH] Adding envers support (contribution from Victor Tatai) --- pom.xml | 9 ++++ .../juplo/plugins/hibernate4/Hbm2DdlMojo.java | 47 +++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/pom.xml b/pom.xml index 20e35411..1e568092 100644 --- a/pom.xml +++ b/pom.xml @@ -61,6 +61,10 @@ Stephen Johnson stejohns@redhat.com + + Victor Tatai + vtatai@gmail.com + @@ -113,6 +117,11 @@ hibernate-core ${hibernate-core.version} + + org.hibernate + hibernate-envers + ${hibernate-core.version} + org.scannotation scannotation diff --git a/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java b/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java index 96848edc..2174765f 100644 --- a/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java +++ b/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java @@ -57,6 +57,7 @@ import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.project.MavenProject; import org.hibernate.cfg.Configuration; import org.hibernate.cfg.NamingStrategy; +import org.hibernate.envers.configuration.AuditConfiguration; import org.hibernate.tool.hbm2ddl.SchemaExport; import org.hibernate.tool.hbm2ddl.SchemaExport.Type; import org.hibernate.tool.hbm2ddl.Target; @@ -82,6 +83,7 @@ public class Hbm2DdlMojo extends AbstractMojo public final static String PASSWORD = "hibernate.connection.password"; public final static String DIALECT = "hibernate.dialect"; public final static String NAMING_STRATEGY="hibernate.ejb.naming_strategy"; + public final static String ENVERS = "hibernate.envers"; private final static String MD5S = "schema.md5s"; @@ -275,6 +277,12 @@ public class Hbm2DdlMojo extends AbstractMojo */ private boolean format; + /** + * Generate envers schema for auditing tables. + * + * @parameter expression="${hibernate.envers}" default-value="false" + */ + private boolean envers; @Override public void execute() @@ -530,6 +538,18 @@ public class Hbm2DdlMojo extends AbstractMojo getLog().debug("Using the value " + hibernateNamingStrategy); properties.setProperty(NAMING_STRATEGY, hibernateNamingStrategy); } + if (envers) + { + if (properties.containsKey(ENVERS)) + getLog().debug( + "Overwriting property " + + ENVERS + "=" + properties.getProperty(ENVERS) + + " with the value " + envers + ); + else + getLog().debug("Using the value " + envers); + properties.setProperty(ENVERS, Boolean.toString(envers)); + } /** The generated SQL varies with the dialect! */ if (md5s.containsKey(DIALECT)) @@ -550,6 +570,25 @@ public class Hbm2DdlMojo extends AbstractMojo md5s.put(DIALECT, properties.getProperty(DIALECT)); } + /** The generated SQL varies with the envers-configuration */ + if (md5s.containsKey(ENVERS)) + { + String envers = properties.getProperty(ENVERS); + if (md5s.get(ENVERS).equals(envers)) + getLog().debug("Envers unchanged."); + else + { + getLog().debug("Envers changed: " + envers); + modified = true; + md5s.put(ENVERS, envers); + } + } + else + { + modified = true; + md5s.put(ENVERS, properties.getProperty(ENVERS)); + } + if (properties.isEmpty()) { getLog().error("No properties set!"); @@ -752,6 +791,14 @@ public class Hbm2DdlMojo extends AbstractMojo */ Thread.currentThread().setContextClassLoader(classLoader); + config.buildMappings(); + + if ("true".equals(properties.getProperty(ENVERS))) + { + getLog().debug("Using envers"); + AuditConfiguration.getFor(config); + } + SchemaExport export = new SchemaExport(config, connection); export.setOutputFile(outputFile); export.setDelimiter(delimiter); -- 2.20.1