OpenEjb容器事务管理回滚问题

时间:2019-06-07 20:34:06

标签: openejb

请帮助解决以下问题。不知道我在做什么错。

我创建了两个无状态会话bean 蓝豆 红豆

我想实现两个交易流程。 一种带有REQUIRED和REQUIRES_NEW。

BlueBean

  1. 将数据插入Person表。
  2. 它调用RedBean

RedBean

  1. 将数据插入到Company表中。

场景

TransacationType。必需

***Positive case*** : 
   No exception in BlueBean and RedBean.
***Result*** :It inserts the data into two tables. 

***Negative case***: 
    Lets say RedBean has issue while inserting into database. It throws exception. 
***Result*** : It shouldn't insert into two tables. Since the TransactionAttribute is REQUIRED. It shares the same transaction context. 

对于 TransacationType.REQUIRES_NEW

正例 :        BlueBean和RedBean中也不例外。     结果 :它将数据插入到两个表中。

否定情况 :         可以说RedBean在插入数据库时​​出现了问题。它引发异常。     结果 :它只能插入到Person表中,不能插入到company表中。由于TransactionAttribute为REQUIRES_NEW             它将创建新的事务上下文。

但是不知何故我看不到以上结果。

即使是必需的情况-否定的情况。数据将插入到“人”表中。除了我要回滚的地方。

@Resource(name="Test", type=javax.sql.DataSource.class)
@TransactionManagement(TransactionManagementType.CONTAINER)
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class BlueBean implements Friend {

    @Resource
    private SessionContext sessionContext;

    public String sayHello() {
        return "Blue says, Hello!";
    }

    public String helloFromFriend() {
        try {
            savePerson();
            Friend friend = (Friend) new InitialContext().lookup("java:comp/env/myFriend");
            return "My friend " + friend.sayHello();
        } catch (NamingException e) {
            throw new EJBException(e);
        } catch (CustomRuntimeException e){
           // sessionContext.setRollbackOnly();
            throw e;
        }
    }

    public void savePerson() {
        try {
            DataSource dataSource = (DataSource) new InitialContext().lookup("java:comp/env/Test");
            PersonManager personManager = new PersonManager();
            personManager.save(dataSource);
        } catch (NamingException| SQLException e) {
            throw new EJBException(e);
        }
    }
}



@Resource(name="Test", type=javax.sql.DataSource.class)
@TransactionManagement(TransactionManagementType.CONTAINER)
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class RedBean implements Friend {


    @Resource
    private SessionContext sessionContext;

    public String sayHello() {

        try {
            save()
        } catch (NamingException| SQLException e) {
            throw new CustomRuntimeException(e);
        }
        return "Red says, Hello!";
    }


    public void save() throws SQLException {

        Connection dbConnection = null;
        Statement statement = null;
        try {
            InitialContext context = new InitialContext();
            DataSource dataSource = (DataSource)context .lookup("java:comp/env/Test");
            dbConnection = ds.getConnection();
            statement = dbConnection.createStatement();

            String insertTableSQL = "INSERT INTO ejb_company"
                    + "(id, name) " + "VALUES"
                    + "(1,'apple')";
           // Just added for testing. 
            if(true) {
                throw new SQLException("test");
            }
            statement.executeUpdate(insertTableSQL);
        } finally {
            if( statement != null )  statement.close();
            if(dbConnection != null) dbConnection.close();
        }
      System.out.println("Company Record is inserted into ejb_company table!");

    }

}


@ApplicationException
public class CustomRuntimeException extends RuntimeException {

    public CustomRuntimeException() {
    }

    public CustomRuntimeException(String s) {
        super(s);
    }

    public CustomRuntimeException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public CustomRuntimeException(Throwable throwable) {
        super(throwable);
    }
}


pom.xml dependencies

<dependency>
      <groupId>org.apache.openejb</groupId>
      <artifactId>javaee-api</artifactId>
      <version>7.0-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
 <dependency>
      <groupId>org.apache.openejb</groupId>
      <artifactId>openejb-core</artifactId>
      <version>5.0.0-SNAPSHOT</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

测试用例

public class EjbDependencyTest extends TestCase {

    private Context context;

    private EJBContainer ejbContainer;

    protected void setUp() throws Exception {

        Properties p = new Properties();
        p.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.core.LocalInitialContextFactory");
        p.put("Test", "new://Resource?type=javax.sql.DataSource");
        p.put("Test.JdbcDriver", "oracle.jdbc.OracleDriver");
        p.put("Test.JdbcUrl", "jdbc:oracle:thin:@test.crop.com:1521/testBlue");
        p.put("Test.UserName", "admin");
        p.put("Test.Password", "######");
        p.put("Test.LogSql", "true");

        ejbContainer = EJBContainer.createEJBContainer(p);
        context = ejbContainer.getContext();
    }

    @Override
    protected void tearDown() throws Exception {
        ejbContainer.close();
    }

    public void testBlue() throws Exception {
        Friend blue = (Friend) context.lookup("java:global/wombat/BlueBean");
        assertNotNull(blue);
        assertEquals("Blue says, Hello!", blue.sayHello());
        assertEquals("My friend Red says, Hello!", blue.helloFromFriend());
    }
}

0 个答案:

没有答案
相关问题