이 콘텐츠는 선택한 언어로 제공되지 않습니다.
1.3. Demarcating Transactions
The JBossJTA API consists of three elements:
- A high-level application transaction demarcation interface
- A high-level transaction manager interface intended for application server
- and a standard Java mapping of the X/Open XA protocol intended for transactional resource manager
All of the JTA classes and interfaces are located in the javax.transaction package, and the corresponding JBossJTA implementations in the com.arjuna.ats.jta package.
1.3.1. UserTransaction 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
The
UserTransaction
interface allows applications to control transaction boundaries.
You can obtain
UserTransaction
implementations via JNDI.
Example 1.2. Controlling Transactions