Hibernate入门案例及增删改查

一、Hibernate入门案例剖析:

①创建实体类Student 并重写toString方法

public class Student {

    private Integer sid;
    private Integer age;
    private String name;
    public Integer getSid() {
        return sid;
    }
    public void setSid(Integer sid) {
        this.sid = sid;
    }
    public Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    @Override
    public String toString() {
        return "Student [sid=" + sid + ", age=" + age + ", name=" + name + "]";
    }

}

② 创建学生对象 并赋值

③引入jar包

④ 构建大配置<hibernate.cfg.xml>

可分为以下步骤:

1.连接数据库的语句

2.sql方言

3.可省的配置(show_sql、format_sql 取值为true)

4.让程序生成底层数据表(hbm2ddl.auto) update/create。create是每次将数据表删除后,重新创建

5.关联小配置

<mapping resource="cn/happy/entity/Student.hbm.xml" />

关键代码如下:

<?xml version=‘1.0‘ encoding=‘utf-8‘?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

    <session-factory>

        <!-- Database connection settings 数据库连接设置-->
        <!-- 驱动类 -->
        <property name="connection.driver_class">oracle.jdbc.OracleDriver</property>
        <!-- url地址 -->
        <property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl3</property>
        <property name="connection.username">wj</property>
        <property name="connection.password">9090</property>

        <!-- SQL dialect  (SQL 方言) -->
        <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>

        <!--在控制台打印后台的SQL语句 -->
        <property name="show_sql">true</property>

        <!-- 格式化显示SQL -->
        <!-- <property name="format_sql">true</property> -->

        <!-- 自动生成student表 -->
         <property name="hbm2ddl.auto">update</property>
        <!-- 关联小配置 -->
        <mapping resource="cn/happy/entity/Student.hbm.xml" />
        <!-- <mapping class="cn.happy.entity.Grade"/> -->

    </session-factory>

</hibernate-configuration>

⑤ 构建小配置(Student.hbm.xml)

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="cn.happy.entity">
        <class name="Student" table="STUDENT">
        <id name="sid" column="SID">
           <!-- 主键生成策略:native:
           native:如果后台是Oracle
                               后台是MySQL,自动应用自增

              assigned:程序员给主键赋值
              uuid:32位的16进制数
              sequence
              native

            -->

            <generator class="assigned">
               <param name="sequence">SEQ_NUM</param>
            </generator>
        </id>
       <!--  <version name="version"></version> -->
        <property name="name" type="string" column="NAME"/>
        <property name="age"/>
    </class>
</hibernate-mapping>

⑥ 工具类HibernateUtil、构建私有静态的Configuration、SessionFactory对象、定义返回session以及关闭session的方法

private static Configuration cf=new Configuration().configure();
    private static SessionFactory sf=cf.buildSessionFactory();

    //方法返回session
    public static Session getSession(){
        return sf.openSession();
    }

    //关闭Session

    public static void CloseSession(){
        getSession().close();
    }

⑦测试类【增删改查】 使用标记After、Before可简化代码

package cn.happy.test;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import cn.happy.entity.Student;
import cn.happy.util.HibernateUtil;

public class Test1 {

    Session session;
    Transaction tx; 

    @After
    public void afterTest(){
        tx.commit();
        HibernateUtil.CloseSession();
    }

    @Before
    public void initData(){
        session=HibernateUtil.getSession();
        tx=session.beginTransaction();
    }

    /*
     * get方法查询
     */
    @Test
    public void getData(){
        Student stu=(Student)session.get(Student.class, 3);
        System.out.println(stu);
    }

    /*
     * 增加
     */

    @Test
    public void addData(){
        Student stu=new Student();
        stu.setSid(12);
        stu.setAge(11);
        stu.setName("李小龙1");
    //读取大配置文件 获取连接信息
        Configuration cfg=new Configuration().configure();

    //创建SessionFactory
        SessionFactory fa=cfg.buildSessionFactory();
    //加工Session
    Session se=fa.openSession();
    Transaction tx = se.beginTransaction();
    //保存
    se.save(stu);
    //事务提交
    tx.commit();
    se.close();

    System.out.println("Save ok!");

    }

    /*
     * 删除
     */
    @Test
    public void delData(){
        Session session=HibernateUtil.getSession();
        Student stu=new Student();
        stu.setSid(2);
        Transaction tx=session.beginTransaction();
        session.delete(stu);
        tx.commit();
        HibernateUtil.CloseSession();
        System.out.println("del ok!");
    }

    /*
     * 修改
     */
    @Test
    public void updateData(){
        Session session=HibernateUtil.getSession();
        Student stu=(Student)session.load(Student.class,3);
        stu.setName("呵呵");
        Transaction tx=session.beginTransaction();
        session.update(stu);
        tx.commit();
        HibernateUtil.CloseSession();
        System.out.println("update ok!");
    }

    }

时间: 2024-10-08 20:50:27

Hibernate入门案例及增删改查的相关文章

MyBatis入门案例、增删改查

1.MyBatis是什么?(下载地址:https://github.com/mybatis/mybatis-3/releases) MyBatis 本是apache的一个开源项目iBatis, 2010年这个项目由apache software foundation 迁移到了google code,并且改名为MyBatis,实质上Mybatis对ibatis进行一些改进. MyBatis是一个优秀的持久层框架,它对jdbc的操作数据库的过程进行封装,使开发者只需要关注 SQL 本身,而不需要花费

Hibernate-基础入门案例,增删改查

项目结构: 数据库: /* SQLyog Ultimate v12.09 (64 bit) MySQL - 5.5.53 : Database - hibernate01 ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @[email protected]@UNI

Struts2+Hibernate+Spring框架实现增删改查

一.添加3个框架的JAR包,完成后写配置文件: 1.web配置文件: 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation=&quo

hibernate关联对象的增删改查------查

本篇博客是之前博客hibernate关联对象的增删改查------查 的后继,本篇代码的设定都在前文已经写好,因此读这篇之前,请先移步上一篇博客 //代码片5 SessionFactory sessionFactory = new AnnotationConfiguration().configure().buildSessionFactory(); Session session = sessionFactory.getCurrentSession(); session.beginTransa

Hibernate进行对象的增删改查

首先我们看看hibernate手动配置步骤 (这个了解一点就可以了,以后是不会自己全部手动配置的) 1.    创建WEB项目 2       下载hibernate-release-4.3.11.Final.zip,并解压. 3       将hibernate必须的包加入lib 4        打开hibernate-release-4.3.11.Final\lib\required文件夹,导入jar文件: 5       打开hibernate-release-4.3.11.Final\

hibernate关联对象的增删改查------增

本文可作为,北京尚学堂马士兵hibernate课程的学习笔记. 这一节,我们看看hibernate关联关系的增删改查 就关联关系而已,咱们在上一节已经提了非常多了,一对多,多对一,单向,双向... 事实上咱们能够简单的说就是A与B,有关系. 至于他们究竟是一对多,多对一,暂且不论. 咱们要讨论的是,假设我存储A,那么数据库里是否会有B;假设我删除A,那么与之相关的B是否也会删除;假设我更新了A,那么B是否会被更新;假设我查询出A,那么B是否也会被查询出来. 首先,咱们看一对多,多对一双向的样例.

Struts2+Spring+Hibernate实现员工管理增删改查功能(一)之ssh框架整合

前言        转载请标明出处:http://www.cnblogs.com/smfx1314/p/7795837.html 本项目是我写的一个练习,目的是回顾ssh框架的整合以及使用.项目介绍:此项目主要有前台管理员通过登录进入员工管理系统页面,之后可以对员工列表进行常规的增删改查.以及部门列表的增删改查.IDE使用的是eclipse,个人感觉比较好用,不过最近我正在研究idea,数据库是mysql,前台主要以bootstrap为主. 这点是直接摘抄的 struts 控制用的 hibern

MySQL数据库学习笔记(八)----JDBC入门及简单增删改查数据库的操作

[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4050825.html 联系方式:[email protected] [正文]                                                                                                               

ExtJS 模块案例(增删改查)

Ext.QuickTips.init();Ext.onReady(function () {    //终端类型下拉列表数据源    var comboStore = new Ext.data.JsonStore({        url: '/AccessMaintenanceHandler/GetResListByResParent.ashx',        root: 'Table',        totalProperty: 'result',        fields: ['Re