我需要将hibernate实体配置xml放入WEB-INF目录。
/hibernate.cfg.xml进入以下目录: / WEB-INF / hibernate /
实体配置文件分别为: / WEB-INF / hibernate / entities /
我必须写入标记<mapping resource="/WEB-INF/hibernate/entities/book.hbm.xml" />
以正确加载实体配置吗?
我收到此错误:
java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: org.hibernate.MappingNotFoundException: resource: /WEB-INF/hibernate/entities/book.hbm.xml not found
提前致谢。
答案 0 :(得分:0)
我已经通过在路径中添加“ ../ ”来解决:“ ../ hibernate / entities / book.hbm.xml ”< / p>
感谢所有人。