问答详情
源自:1-6 生成表结构

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

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();

     }

}


提问者:我觉得有点菜 2016-10-29 14:11

个回答

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

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