我正在尝试使用hibernate将正常的插入代码连接到mysql数据库并为此获取错误,我在下面写下了异常详细信息。
log4j:WARN No appenders could be found for logger (org.jboss.logging).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" org.hibernate.internal.util.config.ConfigurationException: Could not locate cfg.xml resource [/home/controller/Documents/sts_work/webtracker/src/main/java/hibernate.cfg.xml]
at org.hibernate.boot.cfgxml.internal.ConfigLoader.loadConfigXmlResource(ConfigLoader.java:53)
at org.hibernate.boot.registry.StandardServiceRegistryBuilder.configure(StandardServiceRegistryBuilder.java:163)
at org.hibernate.cfg.Configuration.configure(Configuration.java:258)
at testHBConnection.main(testHBConnection.java:12)
我的测试用java文件是
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import com.ar.entity.Student;
public class testHBConnection {
public static void main(String[] args) {
// TODO Auto-generated method stub
SessionFactory sf=new Configuration().configure("/home/controller/Documents/sts_work/webtracker/src/main/java/hibernate.cfg.xml")
.addAnnotatedClass(Student.class)
.buildSessionFactory();
Session ses=sf.getCurrentSession();
try {
Student stu= new Student("","name");
ses.beginTransaction();
ses.save(stu);
ses.getTransaction().commit();
}
catch(Exception e) {
System.out.println("Exception "+e);
}
finally{
}
}
}
我在这里链接了我的项目结构
其中Student是关联到数据库表的pojo文件 我该如何解决这个问题?
答案 0 :(得分:3)
您无法使用此路径
/home/controller/Documents/sts_work/webtracker/src/main/java/hibernate.cfg.xml
因为configure()
方法等待类路径资源(由类加载器加载)或URL。
当然,最好使用资源。因此,如果hibernate.cfg.xml
中有src/main/java/
,则根本不需要指定其路径:
new Configuration().configure()
有一件棘手的事情。例如,当您构建jar并运行它时,它将起作用。如果您想要从IDE运行应用程序,在某些情况下,最好在项目配置的类路径中检查hibernate.cfg.xml
。
但是,如果您使用Maven或gradle,则hibernate.cfg.xml
文件夹中的resources
更专业。