[Mybatis]Cannot convert string '\xAC\xED\x00\x05ur...' from binary to utf8mb3

在使用 Mybatis-Plus 的 Lambda 条件查询时,报出了这个 Cannot convert string '\xAC\xED\x00\x05ur...' from binary to utf8mb3 错误:

java UpdateWrapper<ZhCustomer> wrapper = new UpdateWrapper<>(); wrapper.lambda().func(wr -> { if (customerCodes.contains("|")) { String[] codes = customerCodes.split("\|"); // 这里不能根据IDE提示转为 (Object) codes wr.set(ZhCustomer::getCustomerStatus, status).in(ZhCustomer::getCustomerCode, codes); } else { wr.set(ZhCustomer::getCustomerStatus, status).eq(ZhCustomer::getCustomerCode, customerCodes); } });

这里需要做一个根据 id 列表查询,但是 in 方法的可变参数类型是 Object,所以 IDEA 提示我把 String 强转为 Object,强转过后就出现了这个错误。后来我不做强转之后就不出现这个错误了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值