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

    xiaoxiao2021-03-25  72

    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"> 然后在里面编写自己的映射就行了。。
    转载请注明原文地址: https://ju.6miu.com/read-33345.html

    最新回复(0)