【JAVA学习】Null value was assigned to a property of primitive type setter of com.##.##.##

出错环境:SSH项目

出错原因:##.java实体有一个example属性,类型为int;

  对应数据库中的字段为EX,类型为 in

  由于该字段是后来添加的,所以之前的数据该字段的值为(null),当去读取数据是报错:Null value was assigned to a property of primitive type setter of com.##.##.##

解决方法:将example类型改为 Integer 

你可能感兴趣的:(【归档文章】)