使用 wicket,hibernate.cfg.xml 文件去哪里?
我是 Wicket 和 Hibernate 的新手,无法解决“org.hibernate.HibernateException: /hibernate.cfg.xml not found”错误。 我已经将该文件放在每个可以想象的位置,但我仍然卡住了。 该文件到底在哪里和/或者我是否在某处缺少 wicket 文件配置设置?
I'm new to Wicket and Hibernate and can't get past the "org.hibernate.HibernateException: /hibernate.cfg.xml not found" error. I've put that file in every location imagineable but I'm still stuck. Where exactly does that file go and/or am I missing a wicket file config setting somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
确保 hibernate.cfg.xml 文件放置在类路径中。
Ensure hibernate.cfg.xml file placed in classpath.
如果您刚刚开始使用 Wicket 和 Hibernate,您可能会对 Databinder 工具包感兴趣。
If you're just starting with Wicket and Hibernate, you may be interested in the Databinder toolkit.
我将 hibernate,cfg.xml 放在应用程序的 /WEB-INF 文件夹中。
I'd place the hibernate,cfg.xml in the /WEB-INF folder of your application.
连接该技术的常见形式是使用 springframework,请查看 http://wicketinaction.com/ 2009/06/wicketspringhibernate-configuration/
以及 springframework 可以帮助您解决延迟加载异常和事务管理
the common form to connect that technologies is with springframework, take a look http://wicketinaction.com/2009/06/wicketspringhibernate-configuration/
and also springframework help you with lazy load exception, and transaction management