Project

General

Profile

Actions

How to Transaction Management » History » Revision 12

« Previous | Revision 12/29 (diff) | Next »
Henning Blohm, 17.09.2012 13:35


Transaction management in Z2

(work in progress)

This page provides some hints and pointers on how to implement transaction management for modular applications on Z2. There are a few utilities provided with Z2 that may help you implement transaction handling for the simple cases, and this site provides examples that show how to address the more complicated cases.

Everything below is describing use and enabling of a Java Transaction API (JTA) based approach to transaction management.

Note that there is nothing in Z2 that prevents you from using a previously implemented Web application-local based transaction management. The information on this page is most useful, if you have a modular application that requires transaction management also on a service level.

The following aspects will be discussed:

  • The built-in, non-XA JTA implementation of Z2
  • Controlling transactions in code
  • Using Datasource components
  • Using Hibernate JPA
  • Using a full-blown transaction manager
  • Integration with Jetty
  • Integration with Spring

The built-in, non-XA JTA implementation of Z2 (com.zfabrik.jta)

The z2-base.base repository contains the JTA 1.1 API and an implementation of it in the module com.zfabrik.jta.

Note: This is not an XA-capable transaction manager. This implementation provides no atomic transaction control for more than one transactional resource!

But, this implementation is still most useful, if you do not need distributed transactions (which is preferable in most cases) and still want to benefit from the JTA API as an integration point.

Technically the implementation relies on Z2's Unit of Work abstraction (see Unit of Work and transaction management). As long as all interactions with an application are issued from a Web application this is completely transparent. When invoking code from other entry points, e.g. from an embedded scheduling service for example, this has an impact that will be discussed below.

The TransactionManager interface, as well as the UserTransaction interface are available from the component com.zfabrik.jta/userTransaction and can be looked up via the Z2 core API

IComponentsLookup.INSTANCE.lookup("com.zfabrik.jta/userTransaction",TransactionManager.class)

or via JNDI as

new InitialContext().lookup("components:com.zfabrik.jta/userTransaction?type=javax.transaction.TransactionManager")

and similarly for the UserTransaction interface.

This simple approach to JTA has been used in the samples Sample-hibernate-basic-TBD and Sample-spring-hibernate-TBD.

Controlling transactions in code

Now that you have a JTA implementation you need to indicate where transactions start and end. The most basic (and most understandable) approach to that is to use the UserTransaction interface. Typically in a flow like this:

UserTransaction ut = (UserTransaction) new InitialContext().lookup( JNDI_NAME );
ut.begin();
try {
  // do some work
} catch (Exception e) {
  logger.log(Level.WARNING,"Error at transaction boundary. Setting transaction to rollbackonly",e);
  ut.setRollbackOnly();
  throw e;
} finally {
  if (ut.getStatus()==Status.STATUS_ACTIVE) {
    ut.commit();
  } else {
    ut.rollback();
  }
}

The constant JNDI_NAME is intentionally left undefined here. If you use com.zfabrik.jta you may use the name specified above. If the code above is part of a Servlet Filter that is supposed to begin and end transactions on the boundaries of a Web request, you can use the standard name "java:comp/UserTransaction" given you integrated the transaction management with Jetty (see below).

Now that we looked at it, fortunately you do not need to implement this yourself. Here are some alternatives:

Using DataSource components

A JDBC data source wraps JDBC connections, i.e. actual database connections, for re-use along the control flow.

When accessing the same database multiple times within one transaction, you want to make sure you re-use the same (underlying) JDBC connection. That is, you may (typically) not have more than one (underlying) JDBC connection to the very same database that share the same (non-distributed) transaction. Hence the typical implementation associates a JDBC connection to a database with the transaction that is associated with the current thread of execution. Obviously there is a strong tie between the management of database connections and the transaction management system. JDBC data sources provide the accessor interface to database connections. You may hold of to a data source and ask it for a connection when needed, but you should not hold on to the actual connection object between invocations of your service interface.

Z2 offers a built-in DataSource component type. This is useful, if you use com.zfabrik.jta. If you use another transaction management system, you should most likely use another data source implementation. See for example Sample-jta-plain.

When using the built-in data source, you can look up the DataSource interface via a component lookup, e.g. via JNDI like this:

(DataSource) new InitialContext().lookup(COMPONENT_NAME?type=javax.sql.DataSource)

where COMPONENT_NAME has to be substituted by the real name of the data source component.

The built-in data sources have been used for example in Sample-hibernate-basic-TBD and Sample-spring-hibernate-TBD.

Using Hibernate and JPA

Now you have a JTA implementation in place as well as data sources defined,

What data source

If you have implemented transaction management locally to a Web application already using Hibernate Sessions or the simple transaction management provided by the Spring framework and you do not intent to have other entry points to your application scenario you may skip this page.

(work in progress)

Alternatives - mini JTA, full JTA.
Integration points: Jetty, Hibernate, Spring

Explain transaction util.


This Wiki is about how to integrate a full-blown transaction manager into Z2. We only consider Atomikos for now, hoping other TMs can be used similarly.

Note that the z2-base.base repository contains the JTA 1.1 API and an implementation of it in the module com.zfabrik.jta. That is however not a real, full-featured transaction manager - rather just a pseudo-distributed transaction management implementation. There is no 2-phase-commit handling.

It is still extremely useful for 90% case where global, distributed transactions are unnecessary overkill.

At times however, you may require a real TM and even if you dont and want to use Atomikos with non-XA data sources, in which case it behaves similarly to com.zfabrik.jta, here is how it's done.

There are two samples related to this page:

  • z2-samples.jta-plain: A sample scenario with just z2-base and Atomikos and no further trickery. This samples explains best what is needed to get going. See also Sample_jta_plain.
  • z2-samples.jta-spring: A sample scenario built on z2-base, z2-addons.spring, and Atomikos. This is the more advanced, Spring-minded case. The underlying mechanics may be harder to grasp though. See also samples_jta_spring.

Please consult How_to_Run_a_Sample on how to run these samples.

References

Updated by Henning Blohm over 11 years ago · 12 revisions