13.3 Understanding the Spring Framework transaction abstraction

The key to the Spring transaction abstraction is the notion of atransaction strategy. A transaction strategy is defined by theorg.springframework.transaction.PlatformTransactionManagerinterface:

public interface PlatformTransactionManager {

    TransactionStatus getTransaction(
            TransactionDefinition definition) throws TransactionException;

    void commit(TransactionStatus status) throws TransactionException;

    void rollback(TransactionStatus status) throws TransactionException;
}

This is primarily a service provider interface (SPI), although it can be usedprogrammaticallyfrom your application code. BecausePlatformTransactionManageris aninterface, it can be easily mocked or stubbed as necessary. It is not tied to a lookup strategy such as JNDI.PlatformTransactionManagerimplementations are defined like any other object (or bean) in the Spring Framework IoC container. This benefit alone makes Spring Framework transactions a worthwhile abstraction even when you work with JTA. Transactional code can be tested much more easily than if it used JTA directly.

Again in keeping with Spring’s philosophy, theTransactionExceptionthat can be thrown by any of thePlatformTransactionManagerinterface’s methods isunchecked(that is, it extends thejava.lang.RuntimeExceptionclass). Transaction infrastructure failures are almost invariably fatal. In rare cases where application code can actually recover from a transaction failure, the application developer can still choose to catch and handleTransactionException. The salient point is that developers are not_forced_to do so.

ThegetTransaction(..)method returns aTransactionStatusobject, depending on aTransactionDefinitionparameter. The returnedTransactionStatusmight represent a new transaction, or can represent an existing transaction if a matching transaction exists in the current call stack. The implication in this latter case is that, as with Java EE transaction contexts, aTransactionStatusis associated with a_thread_of execution.

TheTransactionDefinitioninterface specifies:

  • Isolation : The degree to which this transaction is isolated from the work of other transactions. For example, can this transaction see uncommitted writes from other transactions?
  • Propagation : Typically, all code executed within a transaction scope will run in that transaction. However, you have the option of specifying the behavior in the event that a transactional method is executed when a transaction context already exists. For example, code can continue running in the existing transaction (the common case); or the existing transaction can be suspended and a new transaction created. Spring offers all of the transaction propagation options familiar from EJB CMT . To read about the semantics of transaction propagation in Spring, see Section 13.5.7, “Transaction propagation” .
  • Timeout : How long this transaction runs before timing out and being rolled back automatically by the underlying transaction infrastructure.
  • Read-only status : A read-only transaction can be used when your code reads but does not modify data. Read-only transactions can be a useful optimization in some cases, such as when you are using Hibernate.

These settings reflect standard transactional concepts. If necessary, refer to resources that discuss transaction isolation levels and other core transaction concepts. Understanding these concepts is essential to using the Spring Framework or any transaction management solution.

TheTransactionStatusinterface provides a simple way for transactional code to control transaction execution and query transaction status. The concepts should be familiar, as they are common to all transaction APIs:

public interface TransactionStatus extends SavepointManager {

    boolean isNewTransaction();

    boolean hasSavepoint();

    void setRollbackOnly();

    boolean isRollbackOnly();

    void flush();

    boolean isCompleted();

}

Regardless of whether you opt for declarative or programmatic transaction management in Spring, defining the correctPlatformTransactionManagerimplementation is absolutely essential. You typically define this implementation through dependency injection.

PlatformTransactionManagerimplementations normally require knowledge of the environment in which they work: JDBC, JTA, Hibernate, and so on. The following examples show how you can define a localPlatformTransactionManagerimplementation. (This example works with plain JDBC.)

You define a JDBCDataSource

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="${jdbc.driverClassName}" />
    <property name="url" value="${jdbc.url}" />
    <property name="username" value="${jdbc.username}" />
    <property name="password" value="${jdbc.password}" />
</bean>

The relatedPlatformTransactionManagerbean definition will then have a reference to theDataSourcedefinition. It will look like this:

<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
</bean>

If you use JTA in a Java EE container then you use a containerDataSource, obtained through JNDI, in conjunction with Spring’sJtaTransactionManager. This is what the JTA and JNDI lookup version would look like:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/jee
        http://www.springframework.org/schema/jee/spring-jee.xsd">

    <jee:jndi-lookup id="dataSource" jndi-name="jdbc/jpetstore"/>

    <bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager" />

    <!-- other <bean/> definitions here -->

</beans>

TheJtaTransactionManagerdoes not need to know about theDataSource, or any other specific resources, because it uses the container’s global transaction management infrastructure.

The above definition of thedataSourcebean uses the<jndi-lookup/>tag from thejeenamespace. For more information on schema-based configuration, seeChapter 38,XML Schema-based configuration, and for more information on the<jee/>tags see the section entitledSection 38.2.3, “the jee schema”.

You can also use Hibernate local transactions easily, as shown in the following examples. In this case, you need to define a HibernateLocalSessionFactoryBean, which your application code will use to obtain HibernateSessioninstances.

TheDataSourcebean definition will be similar to the local JDBC example shown previously and thus is not shown in the following example.

If theDataSource, used by any non-JTA transaction manager, is looked up via JNDI and managed by a Java EE container, then it should be non-transactional because the Spring Framework, rather than the Java EE container, will manage the transactions.

ThetxManagerbean in this case is of theHibernateTransactionManagertype. In the same way as theDataSourceTransactionManagerneeds a reference to theDataSource, theHibernateTransactionManagerneeds a reference to theSessionFactory.

<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="mappingResources">
        <list>
            <value>org/springframework/samples/petclinic/hibernate/petclinic.hbm.xml</value>
        </list>
    </property>
    <property name="hibernateProperties">
        <value>
            hibernate.dialect=${hibernate.dialect}
        </value>
    </property>
</bean>

<bean id="txManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory"/>
</bean>

If you are using Hibernate and Java EE container-managed JTA transactions, then you should simply use the sameJtaTransactionManageras in the previous JTA example for JDBC.

<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager"/>
If you use JTA , then your transaction manager definition will look the same regardless of what data access technology you use, be it JDBC, Hibernate JPA or any other supported technology. This is due to the fact that JTA transactions are global transactions, which can enlist any transactional resource.

In all these cases, application code does not need to change. You can change how transactions are managed merely by changing configuration, even if that change means moving from local to global transactions or vice versa.

results matching ""

    No results matching ""