元文 †トランザクションの自動制御 †S2Txの機能を使って、POJO(普通のJavaのクラス)に対して、Aspectでトランザクションの自動管理機能を組み込むことができます。EJBコンテナが提供するようなトランザクション管理機能をPOJOに対して透明に組み込むことができるのです。組む込むことのできるトランザクション属性は次のとおりです。 トランザクション属性 †コンポーネント名がAdviceの名前です
Example †Hoge.java package examples.tx; public interface Hoge { public void foo(); } HogeImpl.java package examples.tx; public class HogeImpl implements Hoge { public void foo() { System.out.println("foo"); } } HogeClient.dicon <components> <include path="j2ee.dicon"/> <component class="examples.tx.HogeImpl"> <aspect>j2ee.requiredTx</aspect> </component> </components> HogeClient.java package examples.tx; import org.seasar.framework.container.S2Container; import org.seasar.framework.container.factory.S2ContainerFactory; public class HogeClient { private static final String PATH = "examples/tx/HogeClient.dicon"; public static void main(String[] args) { S2Container container = S2ContainerFactory.create(PATH); Hoge hoge = (Hoge) container.getComponent(Hoge.class); hoge.foo(); } } 実行結果 †DEBUG 2004-03-14 18:05:18,402 [main] Transaction.begin() foo DEBUG 2004-03-14 18:05:18,432 [main] Transaction.commit() j2ee.diconはS2としてあらかじめ用意(srcの直下)されています。Adviceのコンポーネント名をaspectタグのボディに指定するだけなので簡単です。 POJOに簡単にトランザクション管理機能が組み込めることがわかってもらえたと思います。 英文 †Transaction Management †S2Tx provides the automatic transaction management by using Aspect for POJOs. You can use the transaction management that the EJB container offers without adding the code to POJOs. Showing as follows is a transaction attribute offered with S2tx. Transaction Attributes †The column of the component is a name of Advice.
Example †Hoge.java package examples.tx; public interface Hoge { public void foo(); } HogeImpl.java package examples.tx; public class HogeImpl implements Hoge { public void foo() { System.out.println("foo"); } } HogeClient.dicon <components> <include path="j2ee.dicon"/> <component class="examples.tx.HogeImpl"> <aspect>j2ee.requiredTx</aspect> </component> </components> HogeClient.java package examples.tx; import org.seasar.framework.container.S2Container; import org.seasar.framework.container.factory.S2ContainerFactory; public class HogeClient { private static final String PATH = "examples/tx/HogeClient.dicon"; public static void main(String[] args) { S2Container container = S2ContainerFactory.create(PATH); Hoge hoge = (Hoge) container.getComponent(Hoge.class); hoge.foo(); } } Execution result †DEBUG 2004-03-14 18:05:18,402 [main] Transaction.begin() foo DEBUG 2004-03-14 18:05:18,432 [main] Transaction.commit() J2ee.dicon file is in S2(under src directory). You only specify the component name of Advice for the body of the aspect tag. Thus, it is very easy to manage the transaction with POJO by using S2tx. |