# mybatis-plus中使用updateBatchById进行批量更新,对象中存储null会导致空指针异常报错
网上有很多的参考方案:
https://blog.csdn.net/qq_21223653/article/details/124877603
我记录一下,我使用的比较简单的方法,对我需要的字段进行更新
@Autowired
private DeviceService deviceService;
for(Device device : devices){
UpdateWrapper<Device> updateWrapper = new UpdateWrapper<>();
updateWrapper.eq("id",device.getId());
updateWrapper.set("view_count",device.getViewCount());
deviceService.update(null,updateWrapper);
}