使用Spring和MyBatis缺少@Transactional时引发异常
我正在尝试设置使用Spring和MyBatis的Web应用程序。
以下是重要的代码片段。
Maven依赖项pom.xml
:
...
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1212.jre7</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.1</version>
</dependency>
...
和配置Spring bean:
@Configuration
@EnableTransactionManagement
public class DatabaseConfiguration {
@Value("classpath:db/mybatis/mybatis-configuration.xml")
private Resource myBatisConfiguration;
@Bean
public DataSource dataSource() {
final DriverManagerDataSource dataSource = new DriverManagerDataSource();
dataSource.setDriverClassName("org.postgresql.Driver");
dataSource.setUrl("jdbc:postgresql://127.0.0.1:5432/ehdb");
dataSource.setUsername(/*my username*/);
dataSource.setPassword(/*my password*/);
return dataSource;
}
@Bean
public PlatformTransactionManager transactionManager() {
final DataSourceTransactionManager transactionManager = new DataSourceTransactionManager(dataSource());
transactionManager.setValidateExistingTransaction(true);
return transactionManager;
}
@Bean
public SqlSessionFactoryBean sqlSessionFactoryBean() {
final SqlSessionFactoryBean sqlSessionFactory = new SqlSessionFactoryBean();
sqlSessionFactory.setDataSource(dataSource());
sqlSessionFactory.setConfigLocation(myBatisConfiguration);
return sqlSessionFactory;
}
@Bean
public SqlSession sqlSession() throws Exception {
return new SqlSessionTemplate(sqlSessionFactoryBean().getObject());
}
}
这是一个应该在事务方法中调用一些MyBatis语句的服务:
@Service
public class HelloManagerImpl implements HelloManager {
private final HelloDao helloDao;
public HelloManagerImpl(@Autowired final HelloDao helloDao) {
this.helloDao = helloDao;
}
@Override
@Transactional
public String doSomething() {
helloDao.insertRow(); // a row is inserted into DB table via MyBatis; bean sqlSession is autowired in HelloDao
throw new RuntimeException(); // transaction will be rolled back here
}
}
如果我调用该方法doSomething
,它将按预期工作。由于抛出了事务,因此回滚了事务,因此数据库表中没有新行出现RuntimeException
。
如果我注释掉throw语句并重复实验,则数据库表中会出现新的一行。这又是预期的行为。
现在,如果我另外注释掉了@Transactional
注释并调用doSomething()
,则该方法成功,并将新行插入到表中。INSERT
如果没有事务存在,MyBatis似乎会自动为该语句创建事务。
我宁愿在最后一种情况下失败。如果我忘了写@Transactional
注释,那可能是一个错误。如果在这种情况下引发异常,迫使我修复代码,而不是默默地创建一些事务,那会很好。
有没有办法做到这一点?
感谢帮助。
1个
我建议将所有事务设置为只读,以实现最后一种情况,并且仅注释应在数据库中写入的方法。例如,您的服务如下所示:
@Service
@Transactional(readOnly = true)
public class HelloManagerImpl implements HelloManager {
private final HelloDao helloDao;
public HelloManagerImpl(@Autowired final HelloDao helloDao) {
this.helloDao = helloDao;
}
@Override
@Transactional(readOnly = false)
public String doSomething() {
helloDao.insertRow(); // a row is inserted into DB table via MyBatis; bean sqlSession is autowired in HelloDao
throw new RuntimeException(); // transaction will be rolled back here
}
}
-
+1这不是我最初寻找的MyBatis配置,但这是一个合理的解决方法。我也在考虑
@Transactional(propagation = Propagation.MANDATORY)
DAO类或方法。 – Cimlman 17年 1月27日在9:57
https://stackoverflow.com/questions/41768089/throw-exception-on-missing-transactional-with-spring-and-mybatis
MYISAM
引擎没有。 – 空白 '17一月24'在1:27