15

我在让交易与 IDBI 一起工作时遇到了很多麻烦。我们正在使用 dropwizard 框架,并且简单的插入、更新、选择和删除都可以找到,但现在我们似乎无法让事务正常工作。这是我正在尝试的

public class JDb {
    private JustinTest2 jTest2 = null;
    private Handle dbHandle = null;

    public JDb(final IDBI idbi) {
        try {
            dbHandle = idbi.open();
            dbHandle.getConnection().setAutoCommit(false);
            jTest2 = dbHandle.attach(JustinTest2.class);
        } catch( SQLException e ) {

        }
    }

   public void writeJustin(final int styleId, final int eventId) {
        dbHandle.begin();
        int num = jTest2.findByStyleId(styleId);

        try {
            jTest2.doStuff(styleId, eventId);
            dbHandle.commit();
        } catch(Exception e) {
            dbHandle.rollback(); // Never rolls back here, always get the inserted row!
        }

        num = jTest2.findByStyleId(styleId); 
   } 
}

这是我的 JustinTest2 课程

public abstract class JustinTest2 {

    @SqlUpdate("INSERT INTO jTest2 (styleId, jNum) VALUES (:styleId, :jNum)")
    public abstract void insert(@Bind("styleId") int styleId, @Bind("jNum") int jNum);

    @SqlQuery("SELECT count(styleId) " +
            "FROM jTest2 " +
            "WHERE styleId=:styleId")
    public abstract int findByStyleId(@Bind("styleId") int styleId);


    public int doStuff(int styleId, int eventId) throws Exception{
        int count = findByStyleId(styleId);

        insert(styleId, eventId);

        count = findByStyleId(styleId);

        if(count==1) {
            throw new Exception("Roll back");
        }

        return count;
    }
}

我也尝试过像这样实现 writeJustin:

public void writeJustin(final int styleId, final int eventId) throws Exception {
    int rows_updated = jTest2.inTransaction(new Transaction<Integer, JustinTest2>() {
        @Override
        public Integer inTransaction(JustinTest2 transactional, TransactionStatus status) throws Exception {

            jTest2.insert(styleId, eventId);
            int num = transactional.findByStyleId(styleId);

            try {
                if(num == 1) throw new Exception("BOOM");    
            } catch (Exception e) {
                transactional.rollback();
                throw e;
            }

            num = transactional.findByStyleId(styleId);
            return num;
        }
    });
}

我似乎无法让事务回滚,在每一种方式中,插入的行在回滚后总是存在,无论我是直接通过句柄尝试还是使用 inTransaction (根据我的理解,如果出现异常,则不应提交事务在回调中抛出)有人知道我可能做错了什么吗?

4

2 回答 2

27

这与您的问题无关,但我将其添加为答案,因为您的问题在 Google 结果中排名靠前,并且没有很多示例。

使用 JDBI v2,您可以使用@Transaction注释来简化您的代码。只需用注解装饰公共方法,JDBI 将在幕后处理开始、提交和回滚。

public abstract class JustinTest2 {

    @SqlUpdate("INSERT INTO jTest2 (styleId, jNum) VALUES (:styleId, :jNum)")
    protected abstract void insert(@Bind("styleId") int styleId, @Bind("jNum") int jNum);

    @SqlQuery("SELECT count(styleId) " +
            "FROM jTest2 " +
            "WHERE styleId=:styleId")
    protected abstract int findByStyleId(@Bind("styleId") int styleId);

    @Transaction
    public int doStuff(int styleId, int eventId) throws Exception{
        int count = findByStyleId(styleId);

        insert(styleId, eventId);

        count = findByStyleId(styleId);

        if(count==1) {
            throw new Exception("Roll back");
        }

        return count;
    }
}

请注意,我使insertandfindByStyleId方法受到保护;从下public到强制它们在事务中一起完成(在公共doStuff方法中);不是private因为 JDBI 自动生成的实现不能覆盖它们(private abstract因为这个原因让方法不起作用 - 你会强制编译器接受没有主体的方法)。

您还可以TransactionIsolationLevel在注释中指定 a 以覆盖数据库的默认值。

@Transaction(TransactionIsolationLevel.REPEATABLE_READ)
于 2015-02-13T18:24:49.650 回答
9

我想通了。事实证明,我正在测试的表使用 MyISAM 而不是 InnoDB 作为存储引擎。MyISAM 不支持事务。我使用 InnoDB 重建了表,上面的代码运行良好。

对于任何不知道的人,您可以通过以下方式查看表正在使用哪个引擎:

show create table <tablename>;

应该看到类似:

CREATE TABLE `grades` (
    `id` int(11) NOT NULL,
    `percent` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 
于 2014-01-02T23:40:06.853 回答