-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: tutorial of EJB 3 and Hibernate 3
PostPosted: Tue Sep 20, 2005 10:34 am 
Beginner
Beginner

Joined: Wed Apr 27, 2005 8:27 am
Posts: 27
Hi everyone,

where can I get a tutorial of EJB 3 with Hibernate 3? What's .par, persistence arquive?? what should be in it?

thanks, Guilherme


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 27, 2005 1:47 am 
Beginner
Beginner

Joined: Mon Jun 06, 2005 4:23 am
Posts: 41
Location: Hagenberg, AUSTRIA
look here for a tutorial on ejb3
http://caveatemptor.hibernate.org/2.html



place the "persistence.xml" file in the meta-inf directory of the par-archive. a persistence.xml looks like the following:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<entity-manager>
   <name>A Name</name>
   <provider>org.hibernate.ejb.HibernatePersistence</provider>
   <properties>
      <property name="hibernate.ejb.cfgfile" value="hibernate.cfg.xml"/>   
      <property name="hibernate.connection.username">xxx</property>
        <property name="hibernate.connection.password">xxx</property>
        <property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property>
        <property name="hibernate.connection.url">your jdbc connection url</property>
        <property name="hibernate.connection.driver_class">the driver class</property>
      <property name="hibernate.hbm2ddl.auto" value="create-drop"/> -->
        <property name="hibernate.cglib.use_reflection_optimizer">false</property>      
   </properties>
</entity-manager>


more infos on the new par-archive:
http://www.hibernate.org/hib_docs/entitymanager/reference/en/html/configuration.html


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.