框架之 hibernate简单入门

hibernate框架的搭建

Hibernate框架的概述

1. Hibernate框架的概述
    * Hibernate称为
    * Hibernate是一个开放源代码的对象关系映射(ORM)框架,它对JDBC进行了非常轻量级的对象封装,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库。
    * Hibernate可以应用在任何使用JDBC的场合,既可以在Java的客户端程序使用,也可以在Servlet/JSP的Web应用中使用。
    * Hibernate是轻量级JavaEE应用的持久层解决方案,是一个关系数据库ORM框架
2. 记住:Hibernate是一个持久层的ORM框架!!!


什么是ORM(对象关系映射)

1. ORM映射:Object Relational Mapping
    * O:面向对象领域的Object(JavaBean对象)
    * R:关系数据库领域的Relational(表的结构)
    * M:映射Mapping(XML的配置文件)

2. 简单一句话:Hibernate使程序员通过操作对象的方式来操作数据库表记录


Hibernate优点

1. 优点
    * Hibernate对JDBC访问数据库的代码做了封装,大大简化了数据访问层繁琐的重复性代码
    * Hibernate是一个基于jdbc的主流持久化框架,是一个优秀的orm实现,它很大程度的简化了dao层编码工作
    * Hibernate的性能非常好,因为它是一个轻量级框架。映射的灵活性很出色。它支持很多关系型数据库,从一对一到多对多的各种复杂关系

技术分析之Hibernate框架的快速入门



第一步:下载Hibernate5的运行环境

1. 下载相应的jar包等
    * http://sourceforge.net/projects/hibernate/files/hibernate-orm/5.0.7.Final/hibernate-release-5.0.7.Final.zip/download  

2. 解压后对目录结构有一定的了解


第二步:创建表结构

1. 建表语句如下
    Create database hibernate_day01;
    Use hibernate_day01;
    CREATE TABLE `cst_customer` (
      `cust_id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT ‘客户编号(主键)‘,
      `cust_name` varchar(32) NOT NULL COMMENT ‘客户名称(公司名称)‘,
      `cust_user_id` bigint(32) DEFAULT NULL COMMENT ‘负责人id‘,
      `cust_create_id` bigint(32) DEFAULT NULL COMMENT ‘创建人id‘,
      `cust_source` varchar(32) DEFAULT NULL COMMENT ‘客户信息来源‘,
      `cust_industry` varchar(32) DEFAULT NULL COMMENT ‘客户所属行业‘,
      `cust_level` varchar(32) DEFAULT NULL COMMENT ‘客户级别‘,
      `cust_linkman` varchar(64) DEFAULT NULL COMMENT ‘联系人‘,
      `cust_phone` varchar(64) DEFAULT NULL COMMENT ‘固定电话‘,
      `cust_mobile` varchar(16) DEFAULT NULL COMMENT ‘移动电话‘,
      PRIMARY KEY (`cust_id`)
    ) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8;


第三步:搭建Hibernate的开发环境

1. 创建WEB工程,引入Hibernate开发所需要的jar包
    * MySQL的驱动jar包
    * Hibernate开发需要的jar包(资料/hibernate-release-5.0.7.Final/lib/required/所有jar包)
    * 日志jar包(资料/jar包/log4j/所有jar包)


第四步:编写JavaBean实体类

1. Customer类的代码如下:
    public class Customer {
        private Long cust_id;
        private String cust_name;
        private Long cust_user_id;
        private Long cust_create_id;
        private String cust_source;
        private String cust_industry;
        private String cust_level;
        private String cust_linkman;
        private String cust_phone;
        private String cust_mobile;
        // 省略get和set方法
    }


第五步:创建类与表结构的映射

1. 在JavaBean所在的包下创建映射的配置文件
    * 默认的命名规则为:实体类名.hbm.xml
    * 在xml配置文件中引入约束(引入的是hibernate3.0的dtd约束,不要引入4的约束)
        <!DOCTYPE hibernate-mapping PUBLIC
            "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
            "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

2. 如果不能上网,编写配置文件是没有提示的,需要自己来配置
    * 先复制http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd --> window --> preferences --> 搜索xml --> 选择xml catalog --> 点击add --> 现在URI --> 粘贴复制的地址 --> 选择location,选择本地的DTD的路径

3. 编写映射的配置文件
 1 <?xml version="1.0" encoding="UTF-8"?>
 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     <class name="com.xujingyang.hibernate.Customer" table="cst_customer">
 8         <id name="cust_id" column="cust_id">
 9             <generator class="native"></generator>
10         </id>
11
12         <property name="cust_name" column="cust_name"></property>
13         <property name="cust_user_id" column="cust_user_id"></property>
14         <property name="cust_create_id" column="cust_create_id"></property>
15         <property name="cust_source" column="cust_source"></property>
16         <property name="cust_industry" column="cust_industry"></property>
17         <property name="cust_level" column="cust_level"></property>
18         <property name="cust_linkman" column="cust_linkman  "></property>
19         <property name="cust_phone" column="cust_phone"></property>
20         <property name="cust_mobile" column="cust_mobile"></property>
21     </class>
22 </hibernate-mapping>


第六步:编写Hibernate核心的配置文件

1. 在src目录下,创建名称为hibernate.cfg.xml的配置文件
2. 在XML中引入DTD约束
    <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

3. 打开:资料/hibernate-release-5.0.7.Final/project/etc/hibernate.properties,可以查看具体的配置信息
    * 必须配置的4大参数
        #hibernate.connection.driver_class com.mysql.jdbc.Driver
        #hibernate.connection.url jdbc:mysql:///test
        #hibernate.connection.username gavin
        #hibernate.connection.password

    * 数据库的方言(必须配置的)
        #hibernate.dialect org.hibernate.dialect.MySQLDialect

    * 可选的配置
        #hibernate.show_sql true
        #hibernate.format_sql true
        #hibernate.hbm2ddl.auto update

    * 引入映射配置文件(一定要注意,要引入映射文件,框架需要加载映射文件)
        * <mapping resource="com/itheima/domain/Customer.hbm.xml"/>             

4. 具体的配置如下
 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
 6     <hibernate-configuration>
 7         <session-factory>
 8             <!--  * 必须配置的4大参数
 9             #hibernate.connection.driver_class com.mysql.jdbc.Driver
10             #hibernate.connection.url jdbc:mysql:///test
11             #hibernate.connection.username gavin
12             #hibernate.connection.password
13         -->
14
15         <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
16         <property name="hibernate.connection.url">jdbc:mysql:///hibernate_day01</property>
17         <property name="hibernate.connection.username">root</property>
18         <property name="hibernate.connection.password">root</property>
19
20         <!--
21         * 数据库的方言(必须配置的)
22             #hibernate.dialect org.hibernate.dialect.MySQLDialect
23          -->
24          <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
25          <!--
26         * 可选的配置
27             #hibernate.show_sql true
28             #hibernate.format_sql true
29             #hibernate.hbm2ddl.auto update
30          -->
31
32          <property name="hibernate.show_sql">true</property>
33          <property name="hibernate.format_sql">true</property>
34          <!-- <property name="hibernate.hbm2ddl.auto">update</property> -->
35
36          <!--
37         * 引入映射配置文件(一定要注意,要引入映射文件,框架需要加载映射文件)
38             * <mapping resource="com/itheima/domain/Customer.hbm.xml"/>
39              -->
40             <mapping resource="com/xujingyang/hibernate/Customer.hbm.xml"/>
41         </session-factory>
42     </hibernate-configuration>


第七步:编写Hibernate入门代码

  

  1 package com.xujingyang.test ;
  2
  3 import java.util.List ;
  4 import org.hibernate.Query ;
  5 import org.hibernate.SQLQuery ;
  6 import org.hibernate.Session ;
  7 import org.hibernate.SessionFactory ;
  8 import org.hibernate.Transaction ;
  9 import org.hibernate.cfg.Configuration ;
 10 import org.junit.Test ;
 11 import com.xujingyang.hibernate.Customer ;
 12 import com.xujingyang.utils.HibernateUtil ;
 13
 14 public class TestHibernate {
 15
 16     @Test
 17     public void testAddofUtils() {
 18         Session session = HibernateUtil.getSession() ;
 19         Transaction transaction = session.beginTransaction() ;
 20         Customer c = new Customer() ;
 21         c.setCust_name("hehe") ;
 22         session.save(c) ;
 23         transaction.commit() ;
 24         session.close() ;
 25     }
 26
 27     /**
 28      * 添加数据
 29      */
 30     @Test
 31     public void testSave() {
 32         // 加载配置文件
 33         Configuration config = new Configuration().configure() ;
 34
 35         // 创建sessionFactory对象
 36         SessionFactory sessionFactory = config.buildSessionFactory() ;
 37
 38         // 创建session对象
 39         Session session = sessionFactory.openSession() ;
 40
 41         // 开启事物
 42         Transaction transaction = session.beginTransaction() ;
 43
 44         // 编写操作代码
 45         Customer c = new Customer() ;
 46         c.setCust_name("小明") ;
 47
 48         // 保存用户
 49         session.save(c) ;
 50
 51         // 提交事物
 52         transaction.commit() ;
 53
 54         // 释放资源
 55         session.close() ;
 56         sessionFactory.close() ;
 57
 58     }
 59
 60     /**
 61      * 根据id查询数据,只能查询一条
 62      */
 63     @Test
 64     public void testGet() {
 65         // 加载配置文件
 66         Configuration config = new Configuration().configure() ;
 67
 68         // 创建sessionFactory对象
 69         SessionFactory sessionFactory = config.buildSessionFactory() ;
 70
 71         // 创建session对象
 72         Session session = sessionFactory.openSession() ;
 73
 74         // 编写操作代码
 75         Customer customer = session.get(Customer.class, 94L) ;
 76         System.out.println(customer) ;
 77
 78         // 释放资源
 79         session.close() ;
 80         sessionFactory.close() ;
 81
 82     }
 83
 84     /**
 85      * 更新数据
 86      */
 87     @Test
 88     public void testUpdate() {
 89         // 加载配置文件
 90         Configuration config = new Configuration().configure() ;
 91
 92         // 创建sessionFactory对象
 93         SessionFactory sessionFactory = config.buildSessionFactory() ;
 94
 95         // 创建session对象
 96         Session session = sessionFactory.openSession() ;
 97
 98         // 开启事物
 99         Transaction transaction = session.beginTransaction() ;
100
101         // 编写操作代码
102         Customer c = session.get(Customer.class, 94L) ;
103         c.setCust_mobile("12324343545") ;
104         session.update(c) ;
105
106         // 提交事物
107         transaction.commit() ;
108
109         // 释放资源
110         session.close() ;
111         sessionFactory.close() ;
112
113     }
114
115     /**
116      *更新或添加,存在就更新,不存在就添加
117      */
118     @Test
119     public void testSaveOrUpdate() {
120         // 加载配置文件
121         Configuration config = new Configuration().configure() ;
122
123         // 创建sessionFactory对象
124         SessionFactory sessionFactory = config.buildSessionFactory() ;
125
126         // 创建session对象
127         Session session = sessionFactory.openSession() ;
128
129         // 开启事物
130         Transaction transaction = session.beginTransaction() ;
131
132         // 编写操作代码
133         // Customer c=session.get(Customer.class, 94L);
134         Customer c = new Customer() ;
135         c.setCust_name("小红2") ;
136         c.setCust_mobile("22324343545") ;
137         session.saveOrUpdate(c) ;
138
139         // 提交事物
140         transaction.commit() ;
141
142         // 释放资源
143         session.close() ;
144         sessionFactory.close() ;
145
146     }
147
148     /**
149      * 删除数据
150      */
151     @Test
152     public void testDel() {
153         // 加载配置文件
154         Configuration config = new Configuration().configure() ;
155
156         // 创建sessionFactory对象
157         SessionFactory sessionFactory = config.buildSessionFactory() ;
158
159         // 创建session对象
160         Session session = sessionFactory.openSession() ;
161
162         // 开启事物
163         Transaction transaction = session.beginTransaction() ;
164
165         // 编写操作代码
166         Customer c = session.get(Customer.class, 94L) ;
167         session.delete(c) ;
168
169         // 提交事物
170         transaction.commit() ;
171
172         // 释放资源
173         session.close() ;
174         sessionFactory.close() ;
175
176     }
177
178     /**
179      * 查询多条数据
180      */
181     @Test
182     public void testGetList() {
183         // 加载配置文件
184         Configuration config = new Configuration().configure() ;
185
186         // 创建sessionFactory对象
187         SessionFactory sessionFactory = config.buildSessionFactory() ;
188
189         // 创建session对象
190         Session session = sessionFactory.openSession() ;
191
192         // 按sql语句查找,并制定类型
193         SQLQuery sqlQuery = session.createSQLQuery("select * from cst_customer").addEntity(
194                 Customer.class) ;
195
196         List<Customer> list = sqlQuery.list() ;
197         for (Customer customer : list) {
198             System.out.println(customer) ;
199         }
200
201         // 释放资源
202         session.close() ;
203         sessionFactory.close() ;
204
205     }
206
207     /**
208      *所有数据
209      */
210     @Test
211     public void testGetAllList() {
212         // 加载配置文件
213         Configuration config = new Configuration().configure() ;
214
215         // 创建sessionFactory对象
216         SessionFactory sessionFactory = config.buildSessionFactory() ;
217
218         // 创建session对象
219         Session session = sessionFactory.openSession() ;
220
221         // 按sql语句查找,并制定类型
222         Query query = session.createQuery("from Customer") ;
223
224         List<Customer> list = query.list() ;
225
226         for (Customer customer : list) {
227             System.out.println(customer) ;
228         }
229
230         // Customer c=session.get(Customer.class, 94L);
231         Customer c = new Customer() ;
232         c.setCust_name("小红2") ;
233         c.setCust_mobile("22324343545") ;
234         session.saveOrUpdate(c) ;
235
236         // 释放资源
237         session.close() ;
238         sessionFactory.close() ;
239
240     }
241
242 }



第八步:编写Hibernate的SessionFactory工具类

 1 package com.xujingyang.utils ;
 2
 3 import org.hibernate.Session ;
 4 import org.hibernate.SessionFactory ;
 5 import org.hibernate.cfg.Configuration ;
 6
 7 public class HibernateUtil {
 8
 9     private static SessionFactory    sessionFactory    = null ;
10     static {
11         sessionFactory = new Configuration().configure().buildSessionFactory() ;
12     }
13
14     public static Session getSession() {
15         return sessionFactory.openSession() ;
16     }
17 }
 
时间: 2024-10-20 08:33:59

框架之 hibernate简单入门的相关文章

nodejs框架express4.2 简单入门

Perface 今天看了一些nodejs,<nodejs开发指南>.看到了expres的时候,因为那本书用的express版本跟我的不一样,导致很多功能不能实现.所以就各种google,现在就把这个流程记录下来,遇见的bug和一些原理. 要玩express就要装nodejs,如果你的操作系统是centos6.5可以参考我之前写的博客centos6.5安装nodejs.其他操作系统也大同小异,可以看Node Installation Bug 1 Express Command not found

java三大框架之一hibernate使用入门

综述:Hibernate的作用就是让实体类与数据库映射,使数据持久化,用于替代JDBC,使我们不致于写那么多sql语句代码. 1. 首先在官网www.hibernate.org下载hibernate包, 关于如何下载网上也有详细的教程.下载后解压出来,其中required里面的jar包全部是必须的,可以都放在一个library中,然后再加上mysql(或其他数据库)的驱动包,就是我们需要的所有类库了. 2. 类库全部添加进来之后就是框架的配置问题了.这里主要配置两部分:hibernate.cfg

【框架】[Hibernate]构架知识点详解入门与测试实例

转载请注明出处:http://blog.csdn.net/qq_26525215 本文源自[大学之旅_谙忆的博客] Hibernate介绍: Hibernate是一个开放源码的.非常优秀.成熟的O/R Mapping框架.它提供了强大.高性能的Java对象和关系数据的持久化和查询功能. O/R Mapping 对象关系映射(Object Relational Mapping,简称ORM)技术,是通过使用描述对象和数据库之间映射的元数据,将Java程序中的对象自动持久化到关系数据库中. 对象和关系

hibernate多对多 一对多 及简单入门

Hibernate简单使用 入门 通过hibernate的 一对多 多对多轻松看懂hibernate配置 (不使用注解) hibernate对jdbc访问数据库的代码进行轻量级封装,简化重复代码 减少内存消耗 .hibernate基于JDBC开发与mybatis不同hibernate 时完全orm实现简化dao层编码支持多种关系型数据库 hibernate下载 暂时不建议下载最新版本的  (原因 兼容问题). 这里首先说一下hibernate的配置文件 可以分为两类  一类与实体映射作为orm数

Java - Struts框架教程 Hibernate框架教程 Spring框架入门教程(新版) sping mvc spring boot spring cloud Mybatis

https://www.zhihu.com/question/21142149 http://how2j.cn/k/hibernate/hibernate-tutorial/31.html?tid=63 https://www.zhihu.com/question/29444491/answer/146457757 1. Java - Struts框架教程Struts 是Apache软件基金会(ASF)赞助的一个开源项目.通过采用JavaServlet/JSP技术,实现了基于Java EEWeb

Springmvc整合tiles框架简单入门示例(maven)

Springmvc整合tiles框架简单入门示例(maven) 本教程基于Springmvc,spring mvc和maven怎么弄就不具体说了,这边就只简单说tiles框架的整合. 先贴上源码(免积分下载): http://download.csdn.net/detail/zhangbing2434/9435460(这里用的是Idea,eclipse,导入的时候可能会有些差异) 1.tiles依赖的jar包:     maven代码: <dependency> <groupId>

IDEA+Maven+SSM框架实现的简单的增、删、改、查

IDEA+Maven+SSM框架实现的简单的增.删.改.查 选用SSM框架的原因 在目前的企业级Java应用中,Spring框架是必须的.Struts2框架与Spring的整合问题日益凸显,而Spring MVC作为新一代的MVC框架,因其可以与Spring框架无缝整合的特性收到了越来越多的欢迎.Hibernate框架在面对需要存储过程或者复杂SQL时显得力不从心,不能提供高效的数据库控制.而Mybatis框架作为持久层的框架,虽然需要自己编写SQL语句,但是其对高并发高响应的支持,以及对动态S

Hibernate使用入门

1.Hibernate是啥? 百度百科: Hibernate是一个开放源代码的对象关系映射框架,它对JDBC进行了非常轻量级的对象封装,它将POJO与数据库表建立映射关系,是一个全自动的orm框架,hibernate可以自动生成SQL语句,自动执行,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库.Hibernate可以应用在任何使用JDBC的场合,既可以在Java的客户端程序使用,也可以在Servlet/JSP的Web应用中使用,最具革命意义的是,Hibernate可以在应用EJB

iBatis简单入门教程

iBatis 简介: iBatis 是apache 的一个开源项目,一个O/R Mapping 解决方案,iBatis 最大的特点就是小巧,上手很快.如果不需要太多复杂的功能,iBatis 是能够满足你的要求又足够灵活的最简单的解决方案,现在的iBatis 已经改名为Mybatis 了. 官网为:http://www.mybatis.org/ 搭建iBatis 开发环境: 1 .导入相关的jar 包,ibatis-2.3.0.677.jar .mysql-connector-java-5.1.6