Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/JPA/NativeMetadata"

(New page: You may use the org.eclipse.persistence.jpa.JpaHelper class to obtain an EntityManager. == Using a server session == <code><pre> EntityManagerFactory emf = org.eclipse.persistence.jpa.Jpa...)
 
(Using a sessions.xml file)
Line 8: Line 8:
  
 
== Using a sessions.xml file ==
 
== Using a sessions.xml file ==
 +
 +
If you want to use EclipseLink or Oracle TopLink's native XML metadata within EclipseLink JPA this can be accomplished using API:
 +
 
<code><pre>
 
<code><pre>
 
EntityManagerFactory emf = org.eclipse.persistence.jpa.JpaHelper.createEntityManagerFactory(sessionName);
 
EntityManagerFactory emf = org.eclipse.persistence.jpa.JpaHelper.createEntityManagerFactory(sessionName);
 
EntityManager em = emf.createEntityManager();
 
EntityManager em = emf.createEntityManager();
 
</pre></code>
 
</pre></code>
 +
 +
or through the use of persistence unit properties:
 +
 +
TODO: Example of XML property config
 +
 +
TODO: Example of property config using properties map passed to Persistence.createEntityManagerFactory("pu-name", properties)

Revision as of 08:55, 17 October 2007

You may use the org.eclipse.persistence.jpa.JpaHelper class to obtain an EntityManager.

Using a server session

EntityManagerFactory emf = org.eclipse.persistence.jpa.JpaHelper.createEntityManagerFactory(serverSession);
EntityManager em = emf.createEntityManager();

Using a sessions.xml file

If you want to use EclipseLink or Oracle TopLink's native XML metadata within EclipseLink JPA this can be accomplished using API:

EntityManagerFactory emf = org.eclipse.persistence.jpa.JpaHelper.createEntityManagerFactory(sessionName);
EntityManager em = emf.createEntityManager();

or through the use of persistence unit properties:

TODO: Example of XML property config

TODO: Example of property config using properties map passed to Persistence.createEntityManagerFactory("pu-name", properties)

Back to the top