h2: Overview
The UnitOfWorkProtocol aspect makes the Unit Of Work management transparent in the user code.
It will allow you to write your code like this:
Instead of like this:
and still all the transaction and persistence management will take place.
h2: Definition
The UnitOfWorkProtocol aspect has four abstract pointcuts that you have to define in your XML definition file (a "transactional object" is an object that is set to participate in the Unit Of Work transaction, meaning that the Unit Of Work will keep track of its state):
txSupports- picks out all points in the code where you want a TX SUPPORTS transaction to begin, commit and rollbacktxMandatory- picks out all points in the code where you want a TX MANDATORY transaction to begin, commit and rollbacktxNever- picks out all points in the code where you want a TX NEVER transaction to begin, commit and rollbacktransactionalObjects- picks out all transactional object, this pointcut is used by the Transactional MixintransactionalObjectCreationPoints- picks out all points in the code where a transactional object is createdtransactionalObjectModificationPoints- picks out all points in the code where a transactional object is being modified (best done with aset(...)pointcut)
Here is an example on how to define this in XML:
Labels
