|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.transaction.JTATransactionFactory
public class JTATransactionFactory
Factory for JTATransaction
instances.
UserTransaction
reference into JNDI.
However, in practice there are quite a few stand-alone
implementations intended for use outside of J2EE/JEE containers and
which therefore do not publish their UserTransaction
references
into JNDI but which otherwise follow the aspects of the JTA specification.
This TransactionFactory
implementation can support both models.
For complete JTA implementations (including dependence on JNDI), the
UserTransaction
reference is obtained by a call to
resolveInitialContext(java.util.Properties)
. Hibernate will then attempt to locate the
UserTransaction
within this resolved
InitialContext
based on the namespace returned by
resolveUserTransactionName(java.util.Properties)
.
For the so-called stand-alone implementations, we do not care at
all about the JNDI aspects just described. Here, the implementation would
have a specific manner to obtain a reference to its contextual
UserTransaction
; usually this would be a static code reference, but
again it varies. Anyway, for each implementation the integration would need
to override the getUserTransaction()
method and return the appropriate
thing.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface org.hibernate.transaction.TransactionFactory |
---|
TransactionFactory.Context |
Field Summary | |
---|---|
static String |
DEFAULT_USER_TRANSACTION_NAME
|
protected InitialContext |
initialContext
|
protected String |
userTransactionName
|
Constructor Summary | |
---|---|
JTATransactionFactory()
|
Method Summary | |
---|---|
boolean |
areCallbacksLocalToHibernateTransactions()
Are all transaction callbacks local to Hibernate Transactions? Or can the callbacks originate from some other source (e.g. |
void |
configure(Properties props)
Configure this transaction factory. |
Transaction |
createTransaction(JDBCContext jdbcContext,
TransactionFactory.Context transactionContext)
Begin a transaction and return the associated Transaction instance. |
ConnectionReleaseMode |
getDefaultReleaseMode()
Get the default connection release mode. |
protected InitialContext |
getInitialContext()
Getter for property 'initialContext'. |
protected UserTransaction |
getUserTransaction()
Get the UserTransaction reference. |
protected String |
getUserTransactionName()
Getter for property 'userTransactionName'. |
boolean |
isTransactionInProgress(JDBCContext jdbcContext,
TransactionFactory.Context transactionContext,
Transaction transaction)
Determine whether an underlying transaction is in progress. |
boolean |
isTransactionManagerRequired()
Do we require access to the JTA TransactionManager for this strategy? |
protected InitialContext |
resolveInitialContext(Properties properties)
Given the lot of Hibernate configuration properties, resolve appropriate reference to JNDI InitialContext . |
protected String |
resolveUserTransactionName(Properties properties)
Given the lot of Hibernate configuration properties, resolve appropriate JNDI namespace to use for UserTransaction resolution. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String DEFAULT_USER_TRANSACTION_NAME
protected InitialContext initialContext
protected String userTransactionName
Constructor Detail |
---|
public JTATransactionFactory()
Method Detail |
---|
public void configure(Properties props) throws HibernateException
InitialContext
as well as the
JNDI namespace
for the UserTransaction
.
configure
in interface TransactionFactory
props
- The configuration properties
HibernateException
protected final InitialContext resolveInitialContext(Properties properties)
InitialContext
.
In general, the properties in which we are interested here all begin with
hibernate.jndi. Especially important depending on your
environment are hibernate.jndi.url
and
hibernate.jndi.class
properties
- The Hibernate config properties.
protected final String resolveUserTransactionName(Properties properties)
UserTransaction
resolution.
We determine the namespace to use byjta.UserTransaction
config propertyTransactionManagerLookup
was indicated, use its
TransactionManagerLookup.getUserTransactionName()
DEFAULT_USER_TRANSACTION_NAME
properties
- The Hibernate config properties.
UserTransaction
namespacepublic Transaction createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext) throws HibernateException
createTransaction
in interface TransactionFactory
jdbcContext
- The jdbc context to which the transaction belongstransactionContext
- The contract regarding the context in which this transaction will operate.
HibernateException
- Indicates a problem generating a transaction instanceprotected UserTransaction getUserTransaction()
UserTransaction
reference.
UserTransaction
reference.protected InitialContext getInitialContext()
protected String getUserTransactionName()
public ConnectionReleaseMode getDefaultReleaseMode()
getDefaultReleaseMode
in interface TransactionFactory
public boolean isTransactionManagerRequired()
isTransactionManagerRequired
in interface TransactionFactory
public boolean areCallbacksLocalToHibernateTransactions()
areCallbacksLocalToHibernateTransactions
in interface TransactionFactory
Transaction
; false otherwise.public boolean isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
isTransactionInProgress
in interface TransactionFactory
jdbcContext
- The JDBC contexttransactionContext
- The transaction contexttransaction
- The Hibernate transaction
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |