我可以带上球衣+灰熊服务器。但是在“SessionFactory sessionFactory = new Configuration()。configure()。buildSessionFactory”中出现了一些问题。 错误说“SEVERE:服务异常:org.hibernate.HibernateException:/hibernate.cfg.xml not found
..任何人都知道如何使hibernate可以访问hibernate.cfg.xml位置。
答案 0 :(得分:0)
将它放在项目的'src / main / resources'目录中。此外,如果您已指定“/hibernate.cfg.cml”,请尝试删除斜杠,使其显示为“hibernate.cfg.xml”
如果这不起作用(没有目录,类路径错误等等),你可以对其进行硬编码以使其正常工作。
File f = new File("/wherever/the/file/is/hibernate.cfg.xml");
sessions = new Configuration().configure(f).buildSessionFactory();
然后回过头来回报你的技术债务。