这是我第一次使用Hiberante
。
我正在尝试使用以下内容在我的应用程序中创建一个Hibernate session
:
Session session = HiberanteUtil.getSessionFactory().openSession();
它给了我这个错误:
org.hibernate.HibernateException: /hibernate.cfg.xml not found
但是我的项目中没有hibernate.cfg.xml
文件。
如何在没有的情况下创建会话?
答案 0 :(得分:2)
import java.util.Properties;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import com.concretepage.persistence.User;
public class HibernateUtil {
private static final SessionFactory concreteSessionFactory;
static {
try {
Properties prop= new Properties();
prop.setProperty("hibernate.connection.url", "jdbc:mysql://localhost:3306/hibernate");
prop.setProperty("hibernate.connection.username", "root");
prop.setProperty("hibernate.connection.password", "");
prop.setProperty("dialect", "org.hibernate.dialect.MySQLDialect");
concreteSessionFactory = new AnnotationConfiguration()
.addPackage("com.concretepage.persistence")
.addProperties(prop)
.addAnnotatedClass(User.class)
.buildSessionFactory();
} catch (Throwable ex) {
throw new ExceptionInInitializerError(ex);
}
}
public static Session getSession()
throws HibernateException {
return concreteSessionFactory.openSession();
}
public static void main(String... args){
Session session=getSession();
session.beginTransaction();
User user=(User)session.get(User.class, new Integer(1));
System.out.println(user.getName());
session.close();
}
}
答案 1 :(得分:2)
配置Hibernate 4或Hibernate 5的简单方法
SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
Hibernate从hibernate.cfg.xml
和hibernate.properties
读取配置。
如果您不想阅读configure()
,则不应致电hibernate.cfg.xml
。添加带注释的类
SessionFactory sessionFactory = new Configuration()
.addAnnotatedClass(User.class).buildSessionFactory();