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/ORMJPAConfigure"

(New page: Native ORM may be configured with the many EclipseLink properties. * eclipselink.jdbc.driver * eclipselink.jdbc.url * eclipselink.jdbc.user * eclipselink.jdbc.password To name a few, see...)
 
Line 1: Line 1:
 +
== EclipseLink Annotations ==
 +
EclipseLink provides advanced annotations that may be used to configure your persistence unit classes. See the org.eclipse.persistence.jpa.annotations package for more information.
 +
 +
== Properties ==
 
Native ORM may be configured with the many EclipseLink properties.
 
Native ORM may be configured with the many EclipseLink properties.
  

Revision as of 14:50, 15 October 2007

EclipseLink Annotations

EclipseLink provides advanced annotations that may be used to configure your persistence unit classes. See the org.eclipse.persistence.jpa.annotations package for more information.

Properties

Native ORM may be configured with the many EclipseLink properties.

  • eclipselink.jdbc.driver
  • eclipselink.jdbc.url
  • eclipselink.jdbc.user
  • eclipselink.jdbc.password

To name a few, see the org.eclipse.persistence.jpa.config.PersistenceUnitProperties class for a full list of properties.

Back to the top