今天开始学习Hibernate3.3.2,虽然之前或多或少的接触到过一点Hibernate的知识,但是这又能说明什么问题呢?什么都不能说明,将自己调试的helloworld程序贴上来,希望和大家一起分享,共同进步。
数据库:mysql
sql语句:
create database hibernate;
use hibernate;
create table student(
id int primary key auto_increment,
name varchar(20),
age int
);
student.java
package com.model;
public class student {
private int id;
private int age;
private String name;
/**
* @return the id
*/
public int getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(int id) {
this.id = id;
}
/**
* @return the age
*/
public int getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(int age) {
this.age = age;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
}
student.hbm.xml
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.model.student">
<id name="id" />
<property name="name" />
<property name="age" />
</class>
</hibernate-mapping>
StudentTest.java
package com.model.test;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.classic.Session;
import com.model.student;
public class StudentTest {
public static void main(String[] args){
student stu = new student();
// stu.setId(4);
stu.setAge(10);
stu.setName("li");
Configuration conf = new Configuration();
SessionFactory sf = conf.configure().buildSessionFactory();
Session sess = sf.openSession();
sess.beginTransaction();
sess.save(stu);
sess.getTransaction().commit();
sess.close();
sf.close();
}
}
hibernate.cfg.xml存放于src根目录下
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost/hibernate</property>
<property name="connection.username">root</property>
<property name="connection.password">123456</property>
<!-- JDBC connection pool (use the built-in) -->
<!--<property name="connection.pool_size">1</property>-->
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<!-- <property name="current_session_context_class">thread</property> -->
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<!--<mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml"/>-->
<mapping resource="com/model/student.hbm.xml"/>
</session-factory>
</hibernate-configuration>