|
EclipseLink 2.5.0, build 'v20130507-3faac2b' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.persistence.Persistence
public class Persistence
Bootstrap class that is used to obtain an EntityManagerFactory
in Java SE environments. It may also be used to cause schema
generation to occur.
The Persistence
class is available in a Java EE
container environment as well; however, support for the Java SE
bootstrapping APIs is not required in container environments.
The Persistence
class is used to obtain a PersistenceUtil
instance in both
Java EE and Java SE environments.
Field Summary | |
---|---|
static java.lang.String |
PERSISTENCE_PROVIDER
Deprecated. |
protected static java.util.Set<PersistenceProvider> |
providers
Deprecated. |
Constructor Summary | |
---|---|
Persistence()
|
Method Summary | |
---|---|
static EntityManagerFactory |
createEntityManagerFactory(java.lang.String persistenceUnitName)
Create and return an EntityManagerFactory for the named persistence unit. |
static EntityManagerFactory |
createEntityManagerFactory(java.lang.String persistenceUnitName,
java.util.Map properties)
Create and return an EntityManagerFactory for the named persistence unit using the given properties. |
static void |
generateSchema(java.lang.String persistenceUnitName,
java.util.Map map)
Create database schemas and/or tables and/or create DDL scripts as determined by the supplied properties. |
static PersistenceUtil |
getPersistenceUtil()
Return the PersistenceUtil instance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
@Deprecated public static final java.lang.String PERSISTENCE_PROVIDER
@Deprecated protected static final java.util.Set<PersistenceProvider> providers
Constructor Detail |
---|
public Persistence()
Method Detail |
---|
public static EntityManagerFactory createEntityManagerFactory(java.lang.String persistenceUnitName)
persistenceUnitName
- the name of the persistence unit
public static EntityManagerFactory createEntityManagerFactory(java.lang.String persistenceUnitName, java.util.Map properties)
persistenceUnitName
- the name of the persistence unitproperties
- Additional properties to use when creating the factory.
These properties may include properties to control
schema generation. The values of these properties override
any values that may have been configured elsewhere.
public static void generateSchema(java.lang.String persistenceUnitName, java.util.Map map)
Called when schema generation is to occur as a separate phase from creation of the entity manager factory.
persistenceUnitName
- the name of the persistence unitmap
- properties for schema generation; these may
also contain provider-specific properties. The
value of these properties override any values that
may have been configured elsewhere..
PersistenceException
- if insufficient or inconsistent
configuration information is provided or if schema
generation otherwise fails.public static PersistenceUtil getPersistenceUtil()
|
EclipseLink 2.5.0, build 'v20130507-3faac2b' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |