其他分享
首页 > 其他分享> > # mybatis-plus中使用updateBatchById进行批量更新,对象中存储null会导致空指针异常报错

# 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);

        }

标签:更新,device,plus,updateWrapper,deviceService,mybatis,报错,null,UpdateWrapper
来源: https://www.cnblogs.com/chengqiang521/p/16374377.html