HTTP状态500 - org.hibernate.internal.util.config.ConfigurationException:找不到cfg.xml资源[hibernate.cfg.xml]

时间:2016-11-15 22:23:32

标签: java hibernate rest jersey

我在我的主类中运行我的hibernate getArray函数并且它运行成功但是当我在我的泽西休息api中使用相同的方法时它给了我:

HTTP Status 500 - org.hibernate.internal.util.config.ConfigurationException: Could not locate cfg.xml resource [hibernate.cfg.xml]

我试图将该方法放在我的主类中并运行它并且它成功运行然后我试图从资源类调用它并且它没有工作! 这里有什么线索吗? 这是我的目录

My Directory image

这就是我初始化sessionFactory

的方式
File file = new File("src/main/HibernateResources/Hibernate.cfg.xml");
    sessionFactory = configuration.configure(file).buildSessionFactory(factory);

请记住hibernate在其他任何课程中都能很好地工作,它只是没有使用其余的api资源

0 个答案:

没有答案