问答详情
源自:3-11 用户模型管理--用户注册功能实现02

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

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

提问者:江户de米花町 2019-07-12 17:27

个回答

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

    id没有设置自增?