%%%% Error Creating SessionFactory %%%%
Console窗口提示错误:
%%%% Error Creating SessionFactory %%%%
org.hibernate.InvalidMappingException: Unable to read XML
在Struts和Hibernate的项目中,console窗口显示以上错误信息。实体类,映射文件及配置文件均是自动生成。运行后提示创建SessionFactory失败。
解决办法:
把hibernate.cfg.xml中里的"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd "改成"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
映射文件中也要这样改:
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd
改为: "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd".
运行通过。
网友评论