mybatiplus的apply_SpringBoot - MyBatis-Plus使用详解11(Service的CRUD接口3:增删改操作)...

十一、Service 的 CRUD 接口3:增删修操作

1,新增数据

(1)save方法可以将一个实体对象插入到对应的数据表中:

注意:插入成功后,当前插入对象在数据库中的 id会写回到该实体中。

@RestController

public class HelloController {

@Autowired

UserInfoService userInfoService;

@RequestMapping("/test")

public UserInfo test(){

UserInfo user = new UserInfo();

user.setUserName("hangge");

user.setPassWord("12345678");

user.setAge(100);

userInfoService.save(user);

return user;

}

}

(2)saveBatch方法可以批量插入数据:

UserInfo user1 = new UserInfo();

user1.setUserName("hangge");

user1.setPassWord("12345678");

user1.setAge(100);

UserInfo user2 = new UserInfo();

user2.setUserName("航歌");

user2.setPassWord("111111");

user2.setAge(10);

UserInfo user3 = new UserInfo();

user3.setUserName("大力");

user3.setPassWord("0000");

user3.setAge(999);

//批量插入数据

userInfoService.saveBatch(Arrays.asList(user1, user2, user3));

saveBatch方法还可以设置每个批次的插入数量:

UserInfo user1 = new UserInfo();

user1.setUserName("hangge");

user1.setPassWord("12345678");

user1.setAge(100);

UserInfo user2 = new UserInfo();

user2.setUserName("航歌");

user2.setPassWord("111111");

user2.setAge(10);

UserInfo user3 = new User

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值