欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Hibernate_HelloWorld

程序员文章站 2022-06-08 12:18:42
...

一、Hello World Hibernate搭建环境 1、建立一个Project,导入数据库驱动程序,Hibernate所需的jar包 2、创建model层,创建Student类,分别设定id,name,age属性及setter()和getter()方法 3、编写hibernate.cfg.xml ?xml version=1.0 encoding=utf-8?!DOCTYPE

一、Hello World

Hibernate搭建环境

1、建立一个Project,导入数据库驱动程序,Hibernate所需的jar包

2、创建model层,创建Student类,分别设定id,name,age属性及setter()和getter()方法

3、编写hibernate.cfg.xml

com.mysql.jdbc.Driverjdbc:mysql://localhos【本文来自鸿网互联 (http://www.68idc.cn)】t:3306/hibernaterootrootorg.hibernate.dialect.MySQLDialectorg.hibernate.cache.internal.NoCacheProvidertrue

4、编写Student.hbm.xml

5、连接本地数据库,创建数据库hibernate和表student

create database hibernate;

use hibernate;

create table student(id int primary key, name varchar(20), age int);

6、创建测试类StudentTest.java

package com.zgy.hibernate.model;

import org.hibernate.Session;

import org.hibernate.SessionFactory;

import org.hibernate.cfg.Configuration;



public class StudentTest {

public static void main(String[] args){

Student s = new Student();

s.setId(1);

s.setName("s1");

s.setAge(1);



Configuration cfg = new Configuration();

SessionFactory sf = cfg.configure().buildSessionFactory();

Session session = sf.openSession();

session.beginTransaction();

session.save(s);

session.getTransaction().commit();

session.close();

sf.close();

}

}

7、运行,测试成功