org.springframework.beans.FatalBeanException: Could not copy property 'commentCounts' from

今天在写项目的时候遇到这个异常:

    org.springframework.beans.FatalBeanException: Could not copy property 'commentCounts' from source to target; nested exception is java.lang.IllegalArgumentException

贴上错误代码图

  org.springframework.beans.FatalBeanException: Could not copy property 'commentCounts' from

 

 让我感到异常烦恼,检查了service层代码,主要是通过BeanUtils的copyProperties将这个对象里的属性复制到另一个对象的属性。我这是使用了Vo层进行元素的封装。后面发现主要是pojo层的对象属性使用的是包装类Integer,而被复制的对象使用的是int。所以导致复制不过去,从而报错。


上一篇:【Android】Could not install Gradle distribution from(最简单) - gradle


下一篇:could not broadcast input array from shape (64,64,3) into shape (64,64,4)