beanutils.copyproperties 出现source must be null
时间: 2023-08-16 08:53:45 浏览: 88
BeanMapper:比BeanUtils.copyProperties更快
出现 "source must be null" 的错误通常是因为在调用 `BeanUtils.copyProperties` 方法时,源对象 `source` 参数为 `null`。你需要检查一下你的代码,确保传递给 `BeanUtils.copyProperties` 方法的源对象 `source` 不是 `null`。如果确实是 `null`,你需要先创建一个非 `null` 的源对象,或者判断一下是否需要调用 `BeanUtils.copyProperties` 方法。
阅读全文