本文介绍: T> T selectOne (string statement,object parameter) 查询一个 返回的是单个对象 List selectList (string statement,object parameter) 返回的是列表。会默认开启一个事务,但事务不会自动提交,也就意味着需要手动提交该事务,更新操作数据才会持久化到数据库中。// 获取sqlSessionFactory对象。// 加载核心配置文件。
代码
private static SqlSessionFactory sqlSessionFactory; static { try { // 获得核心配置文件 String resource = "mybits-config.xml"; // 加载核心配置文件 InputStream inputStream = Resources.getResourceAsStream(resource); // 获取sqlSessionFactory对象 sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); //获取sqlSession SqlSession sqlSession = sqlSessionFactory.openSession(); } catch (IOException e) { throw new RuntimeException(e); } }
sqlSessionFactory(两个方法)
sqlSessionFactory.openSession()
会默认开启一个事务,但事务不会自动提交,也就意味着需要手动提交该事务,更新操作数据才会持久化到数据库中
openSession(boolean autoCommit)
参数为是否自动提交,如果设置为true,那么不需要手动提交事务
SqlSession
<T> T selectOne (string statement,object parameter) 查询一个 返回的是单个对象 <E> List<E> selectList (string statement,object parameter) 返回的是列表
int insert(String statenent,object paraIneter)
int update (string stateent,object paraIneter)
int delete (string statement,object parameter)
例子
@Test
public void test2()
{ mybitsUtils mybitsUtils = new mybitsUtils();
SqlSession sqlSession = mybitsUtils.getSqlSession();
User userbyId = sqlSession.selectOne("getUserbyId", 1);
System.out.println(userbyId);
}
getmapper
<select id="getUserbyId" parameterType="int" resultType="org.pojo.User"> select * from mybatis.user where id=#{id} </select>
parameterType=”int” 对应接口里面的类型参数
resultType=”org.pojo.User” 对应接口里面的返回值
UserDao mapper = sqlSession.getMapper(UserDao.class); User userbyId = mapper.getUserbyId(1); System.*out*.println(userbyId);
原文地址:https://blog.csdn.net/qq_62646841/article/details/134744441
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_25038.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。