报错信息
Exception in thread “main” org.hibernate.internal.util.config.ConfigurationException: Unable to perform unmarshalling at line number -1 and column -1 in RESOURCE hibernate.cfg.xml. Message: cvc-complex-type.2.4.a: 发现了以元素 ‘{“http://www.hibernate.org/xsd/orm/cfg”:property}’ 开头的无效内容。应以 ‘{“http://www.hibernate.org/xsd/orm/cfg”:mapping, “http://www.hibernate.org/xsd/orm/cfg”:class-cache, “http://www.hibernate.org/xsd/orm/cfg”:collection-cache, “http://www.hibernate.org/xsd/orm/cfg”:event, “http://www.hibernate.org/xsd/orm/cfg”:listener}’ 之一开头。
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:133)
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:65)
at org.hibernate.boot.cfgxml.internal.ConfigLoader.loadConfigXmlResource(ConfigLoader.java:57)
at org.hibernate.boot.registry.StandardServiceRegistryBuilder.configure(StandardServiceRegistryBuilder.java:165)
at org.hibernate.cfg.Configuration.configure(Configuration.java:258)
at org.hibernate.cfg.Configuration.configure(Configuration.java:244)
at com.hyk.hibernate_day001.Test.main(Test.java:12)
Caused by: javax.xml.bind.UnmarshalException
- with linked exception:
[org.xml.sax.SAXParseException; cvc-complex-type.2.4.a: 发现了以元素 ‘{“http://www.hibernate.org/xsd/orm/cfg”:property}’ 开头的无效内容。应以 ‘{“http://www.hibernate.org/xsd/orm/cfg”:mapping, “http://www.hibernate.org/xsd/orm/cfg”:class-cache, “http://www.hibernate.org/xsd/orm/cfg”:collection-cache, “http://www.hibernate.org/xsd/orm/cfg”:event, “http://www.hibernate.org/xsd/orm/cfg”:listener}’ 之一开头。]
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.handleStreamException(UnmarshallerImpl.java:483)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:463)
at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:435)
at org.hibernate.boot.cfgxml.internal.JaxbCfgProcessor.unmarshal(JaxbCfgProcessor.java:126)
… 6 more
解决办法
将配置文件hibernate.cfg.xml中的session-factory中的mapping标签放到所有property标签之后。
比如,将
改为