Add declarative transactions support to Apache Aries
----------------------------------------------------
Key: ARIES-142
URL: https://issues.apache.org/jira/browse/ARIES-142
Project: Aries
Issue Type: New Feature
Components: Transaction
Affects Versions: Incubation
Reporter: Brian DePradine
The aim is to alllow declarative transactions to be used via blueprint, a la
JEE declarative transaction support. For example,
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:tx="http://aries.apache.org/xmlns/transactions/v1.0.0"
default-activation="lazy">
<bean id="persistenceImpl"
class="org.apache.aries.samples.blog.persistence.BlogPersistenceServiceImpl">
<tx:transaction method="*" value="Required"/>
</bean>
...
</blueprint>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.