详细异常信息:

org.hibernate.PropertyAccessException: Exception occurred inside getter of com.huang.entity.Evaluation.money_advice

原因:我有字段

private Float money_advice;//建议资助金额

但是我的getter方法是:

@Column(nullable=true)

public float getMoney_advice() {

return money_advice;

}

Float float 不匹配,所以出现了此异常。