springjpa
ヾ凉秋
哪有什么一见钟情、不过是见色起意罢了、
展开
-
No property updateStatus found for type HumInterviewerEntity!
完整报错代码:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'humInterviewerService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not aut原创 2021-07-22 16:54:23 · 316 阅读 · 0 评论 -
nested exception is org.springframework.data.mapping.PropertyReferenceException: No property “xxx“
报错内容如下:报错原因就是我的dao层方法名称是queryAllDate(),我是想查询所有数据的,可是因为单词打错了把data打成了date,导致按照jpa的规范这个就是去找Demo类的Date属性去查询,而我的Demo的类实体是没有date属性的,所有报错了。解决方法就是把名称改成queryAllData就好了...原创 2021-05-26 09:12:23 · 1062 阅读 · 0 评论 -
java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to com.mpg.ehr.humanaffairs.salaryb
报错内容问题所在有些sql语句写法hql不支持,当你获取到查询结果,但是不能进行转换解决方法在daoImpl类里面写sql原创 2021-06-08 09:28:39 · 195 阅读 · 0 评论