import org.hibernate.*;
import org.hibernate.cfg.*;

public class Test
{
    public static void main(String[] args)
    {
        try
        {
            //通过Configuration获得一个SessionFactory对象
        	SessionFactory sf = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
            //打开一个Session
            Session session = sf.openSession();
            //开始一个事务
            Transaction tx = session.beginTransaction();
            //创建一个Student对象
            Student stu = new Student();
            //通过Student的setter方法改变它的属性
            //注意student_id不用我们设置
            stu.setStudent_name("xiaohong");
            stu.setStudent_age(19);
            //通过session的save()方法将Student对象保存到数据库中
            session.save(stu);
            //提交事务
            tx.commit();
            //关闭会话
            session.close();
        }
        catch(Exception e)
        {
            e.printStackTrace();
        }
    }    
}
最近下载更多
qinjielan  LV12 2018年5月18日
最近浏览更多
wanglinddad  LV55 6月21日
小小虎牙妹  LV4 2023年3月14日
trycode 2022年1月25日
暂无贡献等级
503382513  LV10 2020年7月11日
jimshao289015254  LV9 2020年6月23日
dashan606  LV8 2020年6月8日
一念永恒  LV4 2020年5月28日
zjjhzjb  LV14 2020年2月5日
y00y00  LV10 2020年2月4日
jaonsang  LV25 2020年1月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友