MyBatis-Guice建议,我们可以直接注入Mapper,而不是直接使用SqlSession。来自https://mybatis.org/guice/injections.html
@Singleton
public class FooServiceMapperImpl implements FooService {
@Inject
private UserMapper userMapper;
@Transactional
public User doSomeBusinessStuff(String userId) {
return this.userMapper.getUser(userId);
}
}
这似乎不是线程安全的,因为从不是线程安全的SqlSession的一个实例创建了映射器。 (参考:https://mybatis.org/mybatis-3/getting-started.html)
为了使其具有线程安全性,这是一种更好的方法吗?
/** Thread safe implementation **/
@Singleton
public class FooServiceMapperImpl implements FooService {
@Inject
private SqlSessionFactory sqlSessionFactory;
@Transactional
public User doSomeBusinessStuff(String userId) {
try (SqlSession session = sqlSessionFactory.openSession()) {
UserMapper mapper = session.getMapper(UserMapper.class);
return userMapper.getUser(userId);
}
}
}
答案 0 :(得分:0)
是的。您应该就可以使用
@Inject SqlSession session;
带有以下内容
bind(SqlSessionManager.class).toProvider(SqlSessionManagerProvider.class).in(Scopes.SINGLETON);
bind(SqlSession.class).to(SqlSessionManager.class).in(Scopes.SINGLETON);
这将创建SqlSession并将其关联到本地线程。如果您使用的是@Transactional,那么您也不应该手动打开会话,该会话应该已经为您打开了会话。