|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object play.db.jpa.JPA
public class JPA
JPA Helpers.
Constructor Summary | |
---|---|
JPA()
|
Method Summary | ||
---|---|---|
static void |
bindForCurrentThread(javax.persistence.EntityManager em)
Bind an EntityManager to the current thread. |
|
static javax.persistence.EntityManager |
em()
Get the default EntityManager for this thread. |
|
static javax.persistence.EntityManager |
em(java.lang.String key)
Get the EntityManager for specified persistence unit for this thread. |
|
static void |
withTransaction(F.Callback0 block)
Run a block of code in a JPA transaction. |
|
static
|
withTransaction(F.Function0<T> block)
Run a block of code in a JPA transaction. |
|
static
|
withTransaction(java.lang.String name,
boolean readOnly,
F.Function0<T> block)
Run a block of code in a JPA transaction. |
|
static
|
withTransactionAsync(F.Function0<F.Promise<T>> block)
Run a block of asynchronous code in a JPA transaction. |
|
static
|
withTransactionAsync(java.lang.String name,
boolean readOnly,
F.Function0<F.Promise<T>> block)
Run a block of asynchronous code in a JPA transaction. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JPA()
Method Detail |
---|
public static javax.persistence.EntityManager em(java.lang.String key)
public static javax.persistence.EntityManager em()
public static void bindForCurrentThread(javax.persistence.EntityManager em)
public static <T> T withTransaction(F.Function0<T> block) throws java.lang.Throwable
block
- Block of code to execute.
java.lang.Throwable
public static <T> F.Promise<T> withTransactionAsync(F.Function0<F.Promise<T>> block) throws java.lang.Throwable
block
- Block of code to execute.
java.lang.Throwable
public static void withTransaction(F.Callback0 block)
block
- Block of code to execute.public static <T> T withTransaction(java.lang.String name, boolean readOnly, F.Function0<T> block) throws java.lang.Throwable
name
- The persistence unit namereadOnly
- Is the transaction read-only?block
- Block of code to execute.
java.lang.Throwable
public static <T> F.Promise<T> withTransactionAsync(java.lang.String name, boolean readOnly, F.Function0<F.Promise<T>> block) throws java.lang.Throwable
name
- The persistence unit namereadOnly
- Is the transaction read-only?block
- Block of code to execute.
java.lang.Throwable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |