博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyBatis foreach标签的用法
阅读量:5297 次
发布时间:2019-06-14

本文共 3160 字,大约阅读时间需要 10 分钟。

From《MyBatis从入门到精通》

 

 

一、foreach实现in集合

  1.映射文件中添加的代码:

  

  2.接口类中添加的方法:

List
selectByIdList(List
idList);

 

  3.测试代码

@Test    public void testSelectByIdList(){        SqlSession sqlSession = getSqlSession();        try{            UserMapper userMapper=sqlSession.getMapper(UserMapper.class);            List
idList = new ArrayList
(); idList.add(1L); idList.add(1001L); List
userList = userMapper.selectByIdList(idList); Assert.assertEquals(2,userList.size()); }finally { sqlSession.close(); } }

 


二、foreach实现批量插入

  1.映射文件中添加的代码:

insert into sys_user( user_name,user_password,user_email, user_info,head_img,create_time) values
( #{user.userName},#{user.userPassword},#{user.userEmail}, #{user.userInfo},#{user.headImg,jdbcType=BLOB}, #{user.createTime,jdbcType=TIMESTAMP} )

  

  2.接口类中添加的方法:

int insertList(List
userList);

 

  3.测试代码:

@Test    public void testInsertList() {        SqlSession sqlSession = getSqlSession();        try{            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);            List
userList = new ArrayList
(); for (int i = 0; i < 2; i++) { SysUser user = new SysUser(); user.setUserName("test"+i); user.setUserPassword("123456"); user.setUserEmail("test@mybatis.tk"); userList.add(user); } int result = userMapper.insertList(userList); Assert.assertEquals(2,result); }finally { sqlSession.rollback(); sqlSession.close(); } }

 


三、foreach实现动态UPDATE

  1.映射文件中添加的代码:

update sys_user set
${key}=#{val}
where id=#{id}

 

  2.接口类中添加的方法:

int updateByMap(Map
map);

 

  3.测试代码:

@Test    public void testUpdateByMap(){        SqlSession sqlSession = getSqlSession();        try{            UserMapper userMapper=sqlSession.getMapper(UserMapper.class);            Map
map=new HashMap
(); map.put("id",1L); map.put("user_email","test@mybatis.tk"); map.put("user_password","1234456"); userMapper.updateByMap(map); SysUser user = userMapper.selectById(1L); Assert.assertEquals("test@mybatis.tk",user.getUserEmail()); } finally { sqlSession.rollback(); sqlSession.close(); } }

 

转载于:https://www.cnblogs.com/junjie2019/p/10571736.html

你可能感兴趣的文章
Sprint阶段测试评分总结
查看>>
sqlite3经常使用命令&amp;语法
查看>>
linux下编译openjdk8
查看>>
【python】--迭代器生成器装饰器
查看>>
Pow(x, n)
查看>>
安卓当中的线程和每秒刷一次
查看>>
每日一库:Modernizr.js,es5-shim.js,es5-safe.js
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
FUSE-用户空间文件系统
查看>>
 VS2012 C#调用C++ dll
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
bash使用规则
查看>>
AVL数
查看>>
C语言程序设计II—第九周教学
查看>>
全栈12期的崛起之捡点儿有用的说说
查看>>
基础类型
查看>>