您的位置:首页 > 移动开发

【Hibernate】property*,mapping*,(class-cache|collection-cache)*,event*,listener*)

2020-03-05 08:42 585 查看
The content of element type "session-factory" must match "(property*,mapping*,(class-cache|collection-cache)*,event*,listener*)"

出现这样的错误原因很多

不过有一个原因可能是 比喻说这样的

<mapping resource="com/vo/Users.hbm.xml" />
<mapping resource="com/vo/Utype.hbm.xml" />

<property name="show_sql">true</property>

把 property写在mapping的下面了

<property name="show_sql">true</property>
<mapping resource="com/vo/Users.hbm.xml" />
<mapping resource="com/vo/Utype.hbm.xml" />

这样调整一下 就可以了
  • 点赞
  • 收藏
  • 分享
  • 文章举报
qwerwang 发布了1 篇原创文章 · 获赞 0 · 访问量 20 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐