Spring Transactions无法正常工作 - JDBCTemplate正在读取未提交的数据

时间:2016-07-24 15:22:09

标签: spring transactions spring-jdbc spring-transactions

以下方法插入两条记录(但此时并未提交它们),然后尝试从先前的语句中读取一条未提交的记录。我用Transaction包装代码,并将isolationLevel设置为" READ_COMMITTED"但这似乎并没有奏效。读/" SELECT"声明正在读取未提交的记录。

这怎么可能?我哪里错了?请参阅下面的代码并帮助我。我真的很感激〜

注意:
我正在使用 BoneCP 来获取DataSource。 dbConnectionPool.initConnectionPool(dbName) ,将获取BoneCPDataSource。

 @Override public void testDBCalls() {
  dBConnectionPool.initConnectionPool("titans");      
  DataSource dataSource = dBConnectionPool.getDataSource("titans");   
  DefaultTransactionDefinition definition = new DefaultTransactionDefinition();

  definition.setIsolationLevel(TransactionDefinition.ISOLATION_READ_COMMITTED);
  definition.setIsolationLevel(TransactionDefinition.ISOLATION_REPEATABLE_READ);
  definition.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);

  DataSourceTransactionManager txManager = new DataSourceTransactionManager(dataSource);      TransactionStatus
  transactionStatus = txManager.getTransaction(definition);

  try {           
        try {

          JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);

          String sql = "INSERT INTO groundwater(external_id,source_type) VALUES (12, 13);";
          jdbcTemplate.update(sql);
          System.out.println("Successfully inserted - 1");

          String sql2 = "INSERT INTO groundwater(external_id, source_type,) VALUES(123,45);";
          jdbcTemplate.update(sql2);
          System.out.println("Successfully inserted - 2");

          String sql3 = "select gw_id from groundwater where external_id= 123;";
          System.out.println("Result : "+jdbcTemplate.queryForInt(sql3));

          txManager.commit(transactionStatus);
          System.out.println("Commiting the trasaction...");

      } catch (Exception e) {
          e.printStackTrace();
          txManager.rollback(transactionStatus);
          System.out.println("Rolling back the transaction");

      }
  } finally {
      try {
          dataSource.getConnection().close();
          System.out.println("Closing the connection ...");       
        } catch (SQLException e) {
            e.printStackTrace();            
        }
    }
 }

1 个答案:

答案 0 :(得分:0)

正如@ M.Denium在评论中解释的那样,我试图从单一交易中做所有事情。隔离级别用于保持不同事务之间的一致性。我还在学习这些概念,所以我采取了错误的方式。