vote up 0 vote down star

I'm going nuts trying to get a simple Envers example to work. I'm stuck on the org.hibernate.tool.ant.EnversHibernateToolTask — it looks like I finally got all the jar files I needed, but now I get the error message

[hibernatetool] Persistence unit not found: 'ConsolePU'.

BUILD FAILED
C:\deka\proj\java\test-database\build.xml:61: Persistence unit not found: 'ConsolePU'.

As far as I can tell, persistence units are associated with JPA persistence.xml files. But I'm not using a persistence.xml file; I'm using hibernate.cfg.xml — but the envers example has a <jpaconfiguration> in the ant task:

<hibernatetool destdir=".">
        <classpath>
        	 <fileset dir="src/">
        	      <include name="**/*.hbm.xml"/>
            </fileset>

            <path location="${buildDir}" />
        </classpath>
    <jpaconfiguration persistenceunit="ConsolePU" />
    <hbm2ddl
        drop="false"
        create="true"
        export="false"
        outputfilename="versioning-ddl.sql"
        delimiter=";"
        format="true"/>
    </hibernatetool>

is there something that I can replace it with to get it to work with the hibernate.cfg.xml file? There seems to be ZERO documentation on how to get all this stuff to work properly.

edit: OK, so the main problem was I didn't understand the hibernatetool options and what was appropriate for my app. I did find the Hibernate ant docs, fortunately. Thanks. Now I have a new problem: I'm using annotations, but I also have set up a hibernate.cfg.xml for the properties settings. The hibernatetool task only lets me run either <configuration /> or <annotationconfiguration /> not both, and even <configuration /> won't work since I already have annotations doing things. How can I migrate my property settings from the hibernate.cfg.xml file to my annotations?

edit: Duh, I didn't realize you just do:

<annotationconfiguration configurationfile="...filename..." />

per the hibernatetool task docs.

flag

56% accept rate
1  
Would you please consider accepting an answer/providing a response to the numerous envers questions of yours I have answered? – qbn Jun 20 at 20:19
done (I hope)... upvoted but not accepted (nobody's hit the nail on the head yet) – Jason S Jun 22 at 14:14

4 Answers

vote up 3 vote down check

Replace the <jpaconfiguration /> with the <configuration /> tag, as detailed in Hibernate Tools docs:

<configuration
    configurationfile="hibernate.cfg.xml"
    propertyfile="hibernate.properties"
    entityresolver="EntityResolver classname"
    namingstrategy="NamingStrategy classname">
link|flag
+1 for finding the docs for hibernate tools -- I wish envers had docs of similar quality :( – Jason S Jun 22 at 14:11
vote up 1 vote down

You need annotationconfiguration not jpaconfiguration.

link|flag
got it. (technically I need either annotationconfiguration or configuration, but in my case I'm using annotations.) – Jason S Jun 22 at 14:12
Right, but annotationconfiguration is your best bet. The envers guys just fixed the issue with making those audit tables' schema when using annotationconfiguration and hibernatetool via ANT. – qbn Jun 23 at 17:09
vote up 3 vote down

Just to give you high level prespective. JPA is standard persistence API provided by SUN.
You can use any persistence framework like Hibernate,TopLink,JDO etc as persistence provider with JPA.

So just to make things clear

Your code -----> JPA ----->Persistence Provider(Hibernate).

Its will be good practice to use JPA as it is standard library.

So what is your persistence provider information should only be known to JPA and not your code specific XML's.

This is how your persistence.xml will look like

<persistence version="1.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_1_0.xsd">
<persistence-unit name="QuarkFrameworkPU" transaction-type="RESOURCE_LOCAL">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
</persistence-unit>

And your Application context will look like (Dependent on JPA , no mention of Hibernate)

    <bean id="dataSource"
	class="org.springframework.jdbc.datasource.DriverManagerDataSource"
	p:driverClassName="com.mysql.jdbc.Driver" p:url="${db.url}" />




<!-- ADD PERSISTENCE SUPPORT HERE (jpa,etc) -->

<bean id="entityManagerFactory"
	class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
	<property name="persistenceUnitName" value="QuarkFrameworkPU" />
	<property name="dataSource" ref="dataSource" />
	<property name="jpaVendorAdapter">
		<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
			<property name="showSql" value="true" />
		</bean>
	</property>
</bean>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
	<property name="entityManagerFactory" ref="entityManagerFactory" />
	<property name="dataSource" ref="dataSource" />
</bean>
link|flag
1  
> You can use any persistence framework like Hibernate,TopLink,JDO etc as persistence provider with JPA. No you can't. You can use any JPA implementation. JDO is a specification for persistence, just like JPA is a specification for persistence. – Andy Jun 20 at 9:34
hmmm not sure about JDO ..need to check – Khangharoth Jun 20 at 13:36
vote up 1 vote down

You need to start at the beginning: Sun's JPA tutorial.

This might help as well.

You need to create the persistence.xml and put it in the META-INF directory for your project.

Hibernate is one concrete implementation for JPA, but there are others (e.g., JDO).

link|flag
JDO is a specification for persistence to any type of datastore. It is not an implementation of JPA. OpenJPA is an implementation of JPA, as is DataNucleus, or EclipseLink. – Andy Jun 20 at 9:33
So when Google App Engine tells that they require JPA, and Hibernate or JDO are two of my persistence implementation choices, you're telling me that they have no idea of what they're doing? Sounds like you're arguing semantics here. – duffymo Jun 20 at 10:39
You said that "there are other" implementations of JPA, and mentioned JDO in that context. So I simply corrected the statement since JDO has no relation to JPA ;-) Google AppEngine provides support for JDO and JPA, and that support is provided through the DataNucleus implementation of JDO for BigTable, and the DataNucleus implementation of JPA for BigTable. They do not support Hibernate (which is for RDBMS datastore only). Obviously some other group could provide another implementation of JDO or JPA for BigTable datastore if they wanted, the benefit of having specifications for persistence. – Andy Jun 20 at 13:46
Okay, thank you for the correction. After viewing your bio, I'm glad to take instruction from an authority on the subject. – duffymo Jun 22 at 22:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.