当前位置:Gxlcms > 数据库问题 > MyBatis 4 ------发送SQl

MyBatis 4 ------发送SQl

时间:2021-07-01 10:21:17 帮助过:40人阅读

上面的随笔,我有提到,sql的发送有2个

所以我又有问题了

1、那2种方式

2、实现2种方式

3、它们之间的区别

 

我的答案:

1、SqlSession和Mapper

2、

SqlSession的代码

  Role  role = (Role) sqlSession.selectOne("com.learn.ssm.chapter3.mapper.RoleMapper.getRole",1L);

Mappper的代码

RoleMapper roleMapper = sqlSession.getMapper(RoleMapper.class);

Role role = roleMapper.getRole(1L);

3、没有区别,只是推荐用XML

  

MyBatis 4 ------发送SQl

标签:cto   com   没有   bat   sql   --   发送   ESS   mapper   

人气教程排行