Hibernate 5:找不到配置文件
Hibernate 5 : can't find config file
我今天发现了 Hibernate,我在尝试让一个最小程序找到我的 "hibernate.cfg.xml" 配置文件时遇到了困难。
这是我已经尝试过的方法:
我的主要 :
package testHibernate;
import org.hibernate.cfg.Configuration;
public class Main
{
public static void main(String[] args)
{
Configuration configuration = new Configuration().configure();
}
}
与这个主文件同级:
hibernate.cfg.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/pianissimo</property>
<property name="hibernate.connection.username">admin</property>
<property name="hibernate.connection.password">nx5fDdVdEGVDS6Tq</property>
</session-factory>
</hibernate-configuration>
任何帮助将不胜感激:)
真挚地,
阿兰
你不应该把 hibernate.cfg.xml
和你的 Main
class 放在同一层级。你应该把它放在与你的 testHibernate
包相同的级别,在源文件夹的根目录中。或者您需要像这样
指定 hibernate.cfg.xml
的路径
Configuration configuration =
new Configuration().configure("/testHibernate/hibernate.cfg.xml");
我今天发现了 Hibernate,我在尝试让一个最小程序找到我的 "hibernate.cfg.xml" 配置文件时遇到了困难。
这是我已经尝试过的方法:
我的主要 :
package testHibernate;
import org.hibernate.cfg.Configuration;
public class Main
{
public static void main(String[] args)
{
Configuration configuration = new Configuration().configure();
}
}
与这个主文件同级:
hibernate.cfg.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/pianissimo</property>
<property name="hibernate.connection.username">admin</property>
<property name="hibernate.connection.password">nx5fDdVdEGVDS6Tq</property>
</session-factory>
</hibernate-configuration>
任何帮助将不胜感激:) 真挚地, 阿兰
你不应该把 hibernate.cfg.xml
和你的 Main
class 放在同一层级。你应该把它放在与你的 testHibernate
包相同的级别,在源文件夹的根目录中。或者您需要像这样
hibernate.cfg.xml
的路径
Configuration configuration =
new Configuration().configure("/testHibernate/hibernate.cfg.xml");