...
Overview
The JtaUniOfWorkListener is a UnitOfWorkListener that makes the Unit Of Work transaction aware of JTA transactions.
JTA (Java Transaction API) is the standard transaction API in J2EE.h2:
Definition
You can define the JtaUniOfWorkListener in two ways, either using the SpringAspectContainer configuration file aware-config.xml or using a regular Java API.h3:
Java API
Specify the org.codehaus.aware.unitofwork.jta.JtaUnitOfWorkListener class as one of the listeners in the Class array passed to the UnitOfWork.initialize() method.
| Code Block | ||
|---|---|---|
| ||
UnitOfWork.initialize(new Class[]{JtaUnitOfWorkListener.class});
|
...
Spring definition
Specify the org.codehaus.aware.unitofwork.jta.JtaUnitOfWorkListener class name as one of the listeners in the property listeners.
...
