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的头部文件 <?xml version='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的头文件就行了<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net /hibernate-mapping-3.0.dtd">然后在里面编写自己的映射就行了。。