Could not copy property 'id' from source to target 前端报未知错误

来源:3-11 用户模型管理--用户注册功能实现02

江户de米花町

2019-07-12 17:27

我在 BeanUtils.copyProperties(userModel, userDO); 中报了 Could not copy property 'id' from source to target 的错误 debug发现userModel的id为null 改为 BeanUtils.copyProperties(userModel, userDO, "id"); 后,解决问题。

写回答 关注

1回答

  • weixin_慕函数9488794
    2019-07-18 18:16:20

    id没有设置自增?

SpringBoot构建电商基础秒杀项目

应用SpringBoot快速搭建拥有用户、商品、交易及秒杀活动的电商秒杀应用。

49065 学习 · 954 问题

查看课程

相似问题