I am having a problem with one entity trying to use @OneToMany, and I
would like to see what the actual error is, but that seems to be
getting absorbed.

For more on my actual problem you can look at this:

http://stackoverflow.com/questions/1947627/entitymanager-fails-to-instantiate-using-jpa-hibernate-when-i-add-a-onetomany-ann

This is my values within persistence.xml:

         <property name="hibernate.dialect"
value="org.hibernate.dialect.DerbyDialect"/>
         <property name="hibernate.connection.driver_class"
value="org.apache.derby.jdbc.EmbeddedDriver"/>
         <property name="hibernate.connection.url"
value="jdbc:derby:lift_example;create=true"/>
         <property name="hibernate.max_fetch_depth" value="3"/>
         <property name="hibernate.show_sql" value="true" />
         <property name="hibernate.hbm2ddl.auto" value="create-drop" /
>
         <property name="hibernate.format_sql" value="true"/>

All I get when I have deleted the database, and then do 'mvn clean
compile install' at the end of my unit test is:
13853 [main] INFO org.hibernate.cfg.SettingsFactory - Deleted entity
synthetic identifier rollback: disabled
13853 [main] INFO org.hibernate.cfg.SettingsFactory - Default entity-
mode: pojo
13853 [main] INFO org.hibernate.cfg.SettingsFactory - Named query
checking : enabled
13858 [main] INFO org.hibernate.impl.SessionFactoryImpl - building
session factory
[PersistenceUnit: jpaweb] Unable to build EntityManagerFactory


I would like to see the exception that leads to it not being able to
build the EntityManagerFactory.

--

You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.


Reply via email to