使用 MyBatis API
使用 MyBatis-Spring,你可以继续直接使用 MyBatis 的 API。只需简单地使用 SqlSessionFactoryBean
在 Spring 中创建一个 SqlSessionFactory
,然后按你的方式在代码中使用工厂即可。文章来源:https://www.toymoban.com/news/detail-668921.html
public class UserDaoImpl implements UserDao {
// SqlSessionFactory 一般会由 SqlSessionDaoSupport 进行设置
private final SqlSessionFactory sqlSessionFactory;
public UserDaoImpl(SqlSessionFactory sqlSessionFactory) {
this.sqlSessionFactory = sqlSessionFactory;
}
public User getUser(String userId) {
// 注意对标准 MyBatis API 的使用 - 手工打开和关闭 session
try (SqlSession session = sqlSessionFactory.openSession()) {
return session.selectOne("org.mybatis.spring.sample.mapper.UserMapper.getUser", userId);
}
}
}
小心使用此选项,错误地使用会产生运行时错误,更糟糕地,会产生数据一致性的问题。直接使用 API 时,注意以下弊端:文章来源地址https://www.toymoban.com/news/detail-668921.html
- 它不会参与到 Spring 的事务管理之中。
- 如果
SqlSession
使用与 Spring 事务管理器使用的相同DataSource
,并且有进行中的事务,代码将会抛出异常。 - MyBatis 的
DefaultSqlSession
是线程不安全的。如果在 bean 中注入了它,将会发生错误。 - 使用
DefaultSqlSession
创建的映射器也不是线程安全的。如果你将它们注入到 bean 中,将会发生错误。 - 你必须确保总是在 finally 块中来关闭
SqlSession
。
到了这里,关于【官方中文文档】Mybatis-Spring #使用 MyBatis API的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!