使用hibernate链接MySql实现添加数据功能

开发工具: MyEclipse2013 , 数据库: MySql

1.首先, 在数据库中创建数据库 , 我使用的数据库工具是SQLyog.

创建如下数据库:

 

 

数据库创建完成后打开MyEclispe

2.创建Web Project

2.1: 第一项: 导包

需要导入如下包:(这些包在网上都可以找到, 我也会共享在我得资源里)

 

2.2 : 编写配置文件:hibernate.cfg.xml

[html] view plain copy

  1. <span style="white-space:pre;">     </span><hibernate-configuration>  
  2.         <!-- 配置数据库各个参数 -->  
  3.         <session-factory>  
  4.             <property name="connection.driver_class">com.mysql.jdbc.Driver</property>  
  5.             <property name="connection.url">jdbc:mysql://localhost:3306/hibertest?characterEncoding=utf-8</property>  
  6.             <property name="connection.username">root</property>  
  7.             <property name="connection.password">sasa</property>  
  8.             <property name="dialect">org.hibernate.dialect.MySQLDialect</property>  
  9.   
  10.   
  11.             <!-- 显示sql语句 -->  
  12.             <property name="show_sql">true</property>  
  13.             <!-- 格式化代码 -->  
  14.             <property name="format_sql">true</property>  
  15.           
  16.             <mapping resource="com/entity/Dept.hbm.xml" />  
  17.         </session-factory>  
  18.         </hibernate-configuration>  

 

 

 

 

2.3: 创建一个实体类 , 并给get/set方法 , 有参无参构造

 

[java] view plain copy

  1. package com.entity;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. public class Dept implements Serializable {  
  6.   
  7.     private int deptno;  
  8.     private String deptname;  
  9.     private String loc;  
  10.   
  11.     public int getDeptno() {  
  12.         return deptno;  
  13.     }  
  14.   
  15.     public void setDeptno(int deptno) {  
  16.         this.deptno = deptno;  
  17.     }  
  18.   
  19.     public String getDeptname() {  
  20.         return deptname;  
  21.     }  
  22.   
  23.     public void setDeptname(String deptname) {  
  24.         this.deptname = deptname;  
  25.     }  
  26.   
  27.     public String getLoc() {  
  28.         return loc;  
  29.     }  
  30.   
  31.     public void setLoc(String loc) {  
  32.         this.loc = loc;  
  33.     }  
  34.   
  35.     public Dept(int deptno, String deptname, String loc) {  
  36.         super();  
  37.         this.deptno = deptno;  
  38.         this.deptname = deptname;  
  39.         this.loc = loc;  
  40.     }  
  41.   
  42.     public Dept() {  
  43.         super();  
  44.         // TODO Auto-generated constructor stub  
  45.     }  
  46.   
  47. }  

 

 

 

实体包里需创建Dept.hbm.xml文件;

代码如下:

[html] view plain copy

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE hibernate-mapping PUBLIC  
  3.         "-//Hibernate/Hibernate Mapping DTD 3.0//EN"  
  4.         "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">  
  5.   
  6. <hibernate-mapping>  
  7.   
  8.     <class name="com.entity.Dept" table="dept">  
  9.         <!-- 主键映射 -->  
  10.         <id name="deptno" column="deptno">  
  11.             <!-- 主键产生的值得策略 -->  
  12.             <generator class="native"></generator>  
  13.         </id>  
  14.         <!-- 此处的name值对应实体类中属性 -->  
  15.         <property name="deptname" column="deptname"></property>  
  16.         <property name="loc" column="loc"></property>  
  17.     </class>  
  18. </hibernate-m  

 

 

 

下面编写test类:

代码如下:

 

[java] view plain copy

  1. package com.test;  
  2.   
  3. import org.hibernate.Session;  
  4. import org.hibernate.SessionFactory;  
  5. import org.hibernate.Transaction;  
  6. import org.hibernate.cfg.Configuration;  
  7. import org.hibernate.service.ServiceRegistry;  
  8. import org.hibernate.service.ServiceRegistryBuilder;  
  9.   
  10. import com.entity.Dept;  
  11.   
  12. import junit.framework.TestCase;  
  13.   
  14. public class Test extends TestCase {  
  15.   
  16.     // 增加部门  
  17.     public void testAdd() {  
  18.   
  19.         // 读取hibernate配置文件  
  20.         Configuration config = new Configuration()  
  21.                 .configure("hibernate.cfg.xml");  
  22.   
  23.         // 所有的配置都要向一个类中注册  
  24.         ServiceRegistry sr = new ServiceRegistryBuilder().applySettings(  
  25.                 config.getProperties()).buildServiceRegistry();  
  26.   
  27.         // 获得sessionfactory  
  28.         SessionFactory sf = config.buildSessionFactory(sr);  
  29.   
  30.         // 获得session,操作数据库的接口  
  31.         Session session = sf.openSession();  
  32.   
  33.         // 创建一个部门对象  
  34.         Dept dept = new Dept();  
  35.         dept.setDeptname("开发部");  
  36.         dept.setLoc("武汉");  
  37.   
  38.         // 开启事物  
  39.         Transaction tran = session.beginTransaction();  
  40.   
  41.         // 执行插入操作  
  42.         //手动try catch 选中-右键 -surround with  
  43.         try {    
  44.             session.save(dept);  
  45.             tran.commit();  
  46.         } catch (Exception e) {  
  47.             tran.rollback();  
  48.             e.printStackTrace();  
  49.         } finally {  
  50.             session.close();  
  51.         }  
  52.     }  
  53. }  

[java] view plain copy

  1. 总体图如下:  

[java] view plain copy

  1.   

[java] view plain copy

  1. 运行test类里的testAdd()方法:  

[java] view plain copy

  1. <span style="white-space:pre;"> </span>控制台会打印出sql语句如下:  

[java] view plain copy

  1.   

[sql] view plain copy

  1. Hibernate:   
  2.     insert   
  3.     into  
  4.         dept  
  5.         (deptname, loc)   
  6.     values  
  7.         (?, ?)  

 

 

 

 

 

 

 

[java] view plain copy

  1. 数据库数据添加结果:  

[java] view plain copy

  1.   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值