我试图指示休眠的相对路径,让它进入休眠状态.cfg.xml但它不起作用,因为我写错了(我在文件名中键入了cgf而不是cfg)。所以我尝试了一条绝对路径,但Hibernate没有识别出新的路径,并且仍然在查看我以前通过的相对路径。但是参数 .configure() 已经 chenged 了,为什么 Hibernate 忽略并错误地坚持呢?
我的代码:
private static SessionFactory buildSessionFactory() {
Configuration configuration = new Configuration();
// Use the mappings and properties specified in an application resource named hibernate.cfg.xml.
configuration.configure("C:\\Users\\Lucas_Pletsch\\eclipse-workspace\\PDV\\main\\resources\\hibernate.cfg.xml");
显示Hibernate搜索休眠的错误屏幕.cfg.xml在我之前作为参数传递的路径中:
现在我已经尝试了这个:
SessionFactory sessionFactory = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
错误消息已更改,但Hibernate仍然没有找到.cfg.xml:
哔哔one
白衣染霜花
相关分类