jpa程序,访问报错:
org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of com.surfront.meepao.pojo.GamePlayer.score; nested exception is javax.persistence.PersistenceException:
原因如下:
在pojo类GamePlayer中,某int类型的字段score,在数据库中的数据为null。
解决办法:
修改int为其包装类型Integer。