【hibernate】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的头部文件
<?xmlversion='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
 
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
 
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

  这个应该改为mapping的头文件就行了
<?xmlversion="1.0" encoding="UTF-8"?>
<!DOCTYPEhibernate-mapping PUBLIC
         "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
         "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

你可能感兴趣的:(Hibernate,encoding)