hibernate的基本使用
hibernate框架的主要作用就是将面向对象语言转化为操作关系数据的语言。
一、导入相关jar包
- 1、将下载的hibernate解压缩,导入
hibernate-release-5.3.5.Final\lib\required
目录下的所有jar包。 - 2、导入mysql驱动
二、编写持久化类
注意几点: - 1、类名对应表名
- 2、成员变量对应数据库字段
- 3、提供getter和setter方法即可
三、创建持久类的映射文件
注意:
- 命名规则为:类名.hbm.xml
- 位置:和持久化类同目录下
1
2
3
4
5
6
7
8
9
10
11"1.0" encoding="UTF-8" xml version=
<!-- 以下来自hibernate核心类下的 /org/hibernate/hibernate-mapping-3.0.dtd的约束-->
<hibernate-mapping package="cn.wangsr.domain"><!-- 包名 -->
<class name="Customer" table="Customer"><!-- 表名 -->
<id name="custId" column="cust_id"></id><!-- 主键 -->
<property name="custName" column="cust_name"></property><!-- 其它字段 -->
</class>
</hibernate-mapping>
创建主配置文件
注意:
- 命名规则为:hibernate.cfg.xml
- 位置:在src目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20"1.0" encoding="UTF-8" xml version=
<!-- 在hibernate核心包目录下 /org/hibernate/hibernate-configuration-3.0.dtd-->
<hibernate-configuration>
<session-factory>
<!-- 连接数据库信息 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/first_hibernate</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">123456</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- 可选项 -->
<property name="hibernate.hbm2ddl.auto">update</property>
<property name="hibernate.show_sql">true</property>
<!-- 映射文件位置 -->
<mapping resource="cn/wangsr/domain/Customer.hbm.xml"/>
</session-factory>
</hibernate-configuration>
使用
1 | public class HibernateDemo1 { |
抽取工具类
目的:是SessionFactory只创建一次
实现:使用静态初始化块1
2
3
4
5
6
7
8
9
10
11
12public class HibernateUtil{
private static SessionFactory factory;
static{
Configuration cfg = new Configuration();
cfg.configure();
factory = cfg.buildSessionFactory();
}
public static Session openSession(){
return factory.openSession();
}
}
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 jaytp@qq.com
文章标题:hibernate的基本使用
本文作者:子非鱼
发布时间:2018-11-04, 11:19:29
最后更新:2018-10-07, 09:01:50
原始链接:https://Wangsr.cn/2018/11/04/2018-2018-08-19-hibernate的基本使用/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。