小白学hibernate(2)-helloword
1.在src下创建hibernate 配置文件
2.配置hibernate配置文件
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE hibernate-configuration PUBLIC 3 "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 4 "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> 5 <hibernate-configuration> 6 <session-factory> 7 <!-- 链接数据库基本信息 驱动,连接串,用户名,密码--> 8 <property name="connection.driver_class">com.mysql.jdbc.Driver</property> 9 <property name="connection.url">jdbc:mysql://localhost:3306/db_hibernate</property> 10 <property name="connection.username">root</property> 11 <property name="connection.password"></property> 12 13 <!-- 配置hibernate 基本信息 --> 14 <!-- 数据库所使用的方言 --> 15 <!--<property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>--> 16 <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property> 17 18 <!-- 是否在控制台输出sql --> 19 <property name="show_sql">true</property> 20 21 <!-- 是否对输出的SLQ进行格式化 --> 22 <property name="format_sql">true</property> 23 24 <!-- 是否自动生成数据库表 --> 25 <property name="hbm2ddl.auto">update</property> 26 27 <!-- 引入映射文件 --> 28 <mapping resource="com/java00123/model/Student.hbm.xml"/> 29 </session-factory> 30 </hibernate-configuration>
2-1:
主要配置项:
1.数据库连接的基本信息,驱动,连接串,用户名和密码。
2.数据库使用的方言,注意注释的那个,5.7myslq用放开的那个。
出现的异常,参考 MySQL server version for the right syntax to use near ‘type=InnoDB’ at line x
3.是否在控制台输出SQL
4.SQL格式化
5.自动生成数据库表
6.引入映射文件
3.创建model类
4.生成对应的hbm.xml文件
在student 类上右键 new –
一直下一步下一步,生成完成
修改一下id的生成方式
native 使用本地数据库的方式,自增
5.新建一个JUnit Test Case
1 package com.java00123.test; 2 3 4 import java.util.Date; 5 6 import org.hibernate.Session; 7 import org.hibernate.SessionFactory; 8 import org.hibernate.Transaction; 9 import org.hibernate.cfg.Configuration; 10 11 import com.java00123.model.Student; 12 13 public class Test { 14 15 @org.junit.Test 16 public void test() { 17 System.out.println("测试begin"); 18 19 //1.创建一个SessionFactory对象 20 SessionFactory sessionFactory = null; 21 //1-1.创建Configuration对象:对应Hibernate基本配置信息,和对象关系映射信息 22 Configuration configuration = new Configuration().configure(); 23 //2.创建sessionFactory 对象 24 sessionFactory = configuration.buildSessionFactory(); 25 26 //2.创建一个session对象。 27 Session session = sessionFactory.openSession(); 28 29 //3.开启事务 30 Transaction transaction = session.beginTransaction(); 31 32 //4.执行保存操作 33 Student student = new Student("张三", 20, new Date()); 34 session.save(student); 35 36 //5.提交事物。 37 transaction.commit(); 38 39 //6.关闭session 40 session.close(); 41 42 //7.关闭sessionFactory对象。 43 sessionFactory.close(); 44 System.out.println("测试完毕"); 45 } 46 47 }
6.右键运行
数据库中自动创建表,和数据。