I am trying to create a new JEE project using hibernate and JPA 2.0 on the glass fish server. Can you guys provide me some resources to configure the above so that they work seamlessly? I have tried using netbeans and generated the persistence unit by using the hibernate provider, but I end up getting this error:

javax.persistence.PersistenceException: [PersistenceUnit: DBAppPU] Unable to build EntityManagerFactory
link|improve this question

Thanks pascal,you have become my guru – BinCode Sep 1 '10 at 11:45
feedback

1 Answer

up vote 4 down vote accepted

First, install Hibernate support via the update tool (or follow the manual procedure). Second, provide a JPA 2.0 persistence.xml to use Hibernate as JPA provider:

<persistence 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" version="2.0">
  <persistence-unit name="MyPu" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <!-- JNDI name of the database resource to use -->
    <jta-data-source>jdbc/__default</jta-data-source>
    <properties>
      <!-- The database dialect to use -->
      <property name="hibernate.dialect" value="org.hibernate.dialect.DerbyDialect" />
      <!-- update database tables at deployment -->
      <property name="hibernate.hbm2ddl.auto" value="update"/>
      <!-- log the generated SQL -->
      <property name="hibernate.show_sql" value="true"/>
    </properties>
  </persistence-unit>
</persistence>

Resources

link|improve this answer
Thanks pascal, you are a true guru.I just realized that the hibernate libraries should be put on the servers folder. – BinCode Sep 1 '10 at 11:00
Now i dont get any error but nothing turns up in the display .On checking the logs i see the following Not binding factory to JNDI, no JNDI name configured – BinCode Sep 1 '10 at 13:38
@BinCode Did you configure a particular datasource? What is its JNDI name? Could you test it successfully in the admin console? Also please show your persistence.xml. – Pascal Thivent Sep 1 '10 at 13:51
i have added my files below please check and let me know what am i doing wrong thanks. – BinCode Sep 2 '10 at 6:44
Assistance required :D – BinCode Sep 3 '10 at 0:07
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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