首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

【Hibernate】property*地图ping*(class-cache|collection-cache)*event*listener*)

2012-09-02 
【Hibernate】property*,mapping*,(class-cache|collection-cache)*,event*,listener*)The content of eleme

【Hibernate】property*,mapping*,(class-cache|collection-cache)*,event*,listener*)
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" />

这样调整一下 就可以了

热点排行