openSession就可以建表 用了三行代码 这样合理吗

来源:1-6 生成表结构

我觉得有点菜

2016-10-29 14:11

import org.hibernate.Session;

import org.hibernate.SessionFactory;

import org.hibernate.cfg.Configuration;

import org.junit.Test;


public class TestStudents {


     @Test

     public void testCreateTable() {

         Configuration config = new Configuration().configure();

         SessionFactory sessionFactory = config.buildSessionFactory();

         Session session = sessionFactory.openSession();

     }

}


写回答 关注

1回答

  • 慕粉4275966
    2016-10-30 14:34:45

    openSession() 可以的 但是要记得关闭

使用Struts2+Hibernate开发学生信息管理功能

Strust2+Hibernate整合开发案例,Java Web开发技能更上一层楼

80701 学习 · 754 问题

查看课程

相似问题