当前位置: 代码迷 >> Java Web开发 >> org.hibernate.PropertyNotFoundException: Could not find a getter for id in class,该如何处理
  详细解决方案

org.hibernate.PropertyNotFoundException: Could not find a getter for id in class,该如何处理

热度:854   发布时间:2016-04-16 22:01:42.0
org.hibernate.PropertyNotFoundException: Could not find a getter for id in class
这是报错的









请教大神们,哪有错啊
------解决方案--------------------
<hibernate-mapping>
  <class name="com.xxx.xxx.xxx.News" table="NEWS">
....
....
</hibernate-mapping>

映射文件的实体写错了,你应该映射News,你写成你的Test类了,里面肯定没有id,所以报这个错误。
  相关解决方案