Attribute "column" must be declared for element type "property"解决办法

hibernate,自己写的xxx.hbm.xml文件 出现 错误:
Attribute "column" must be declared for element type"property"

   这是因为我是复制了
hibernate.cfg.xml的头部文件

         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

  这个应该改为mapping的头文件就行了

         "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
         "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

然后在里面编写自己的映射就行了。。

你可能感兴趣的:(其他)