ok,从这篇开始himi将与大家一起进入hibernate框架的学习啦,新手新手的说,希望大家多多指教;
对于hibernate概述一下:
” hibernate是一个开放源代码的对象关系映射框架,它对jdbc进行了非常轻量级的对象封装,使得java程序员可以随心所欲的使用对象编程思维来操纵数据库。 hibernate可以应用在任何使用jdbc的场合,既可以在java的客户端程序使用,也可以在servlet/jsp的web应用中使用,最具革命意义的是,hibernate可以在应用ejb的j2ee架构中取代cmp,完成数据持久化的重任。 ”
本篇则简单介绍大家如何配置我们的第一个hibernate框架环境和第一个项目,hellohibernate;
——
准备工作:
1. himi这里使用的一些开发资源如下:
1.1 hibernate-distribution-3.3.2.ga (hibernate核心包)
1.2 hibernate-annotations-3.4.0.ga (annotations核心包)
1.3 slf4j-1.5.8 (slf4j 实现库,虽然hibernate核心包中有slf4j的jar包,但是只是api包没有实现)
1.4 mysql-connector-java-3.1.14 (mysql 驱动)
ok了,关于资源下载,大家百度下,当然himi这里用的不是最新的,刚上手怕最新的自己玩不转~咳咳、
elipse 中user lib 配置工作:(这里himi用的mac的eclipse)
我们添加到新建的一个 java project里,这里himi新建的java项目名:hellohibernate;
打开你的eclipse-偏好设置-user libraries中:
点击 new… 新建,然后输入自定义名称,然后添加hibernate所需的jar包,jar包一共8个如下:
1
2
3
4
5
/hibernatesoftware/hibernate-distribution-3.3.2.ga/hibernate3.jar
/hibernatesoftware/hibernate-distribution-3.3.2.ga/required/lib 下的6个jar包
/slf4j-1.5.8/slf4j-1.5.8/slf4j-nop-1.5.8.jar
如下图:
ok,搞定之后,然后右键你的项目,然后->build path->add libraries ->user library->选择你新建的包含hibernate8个jar包的library即可;
继续右键你的项目build path->add external archives 将 mysql-connector-java-3.1.14, mysql驱动导入项目中;
mysql 准备工作:
这里himi新建一个数据库“hibernate”,新建表“teacher”;对于mysql不太了解的,请移步到himi本博客的mysql相关博文中学习下吧,这里himi不再赘述了;这里为了后续讲述便于理解,himi将建立好的show出来让大家过目下;
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
mysql> show databases;
+--------------------+
| database |
| information_schema |
| hellohibernate |
| hibernate |
| himidb |
| mysql |
| people |
| performance_schema |
| test |
8 rows in set (0.00 sec)
mysql> use hibernate;
database changed
mysql> describe teacher;
+-------+-------------+------+-----+---------+-------+
| field | type | null | key | default | extra |
| id | int(11) | no | pri | null | |
| name | varchar(20) | yes | | null | |
| age | int(11) | yes | | null | |
| gold | int(11) | yes | | null | |
4 rows in set (0.07 sec)
其中 id himi将其设置为 primary key ;
准备工作完成后,我们首先创建两个类,一个入口函数类:
maintest:
import org.hibernate.session;
import org.hibernate.sessionfactory;
import org.hibernate.cfg.configuration;
import com.himi.teacher;
public class maintest {
/**
* @param args
*/
public static void main(string[] args) {
}
再创建一个teacher类:( pojo)ps. 不太了解pojo的请百度下先~
28
29
30
31
32
33
package com.himi;
public class teacher {
private int id;
private string name;
private int age;
private int gold;
public int getid() {
return id;
public void setid(int id) {
this.id = id;
public string getname() {
return name;
public void setname(string name) {
this.name = name;
public int getage() {
return age;
public void setage(int age) {
this.age = age;
public int getgold() {
return gold;
public void setgold(int gold) {
this.gold = gold;
整个项目目录如下图所示:
大家先不要在意, hibernate.cfg.xml 和 teacher.hbm.xml 这两个文件,下面再详细介绍;
首先我们使用hibernate就应该先创建hibernate的配置文件:(这里himi采用默认此配置名为hibernate.cfg.xml,当然这个配置文件可以自定义名但是这个名字是否采用默认将影响后面我们使用的不同,这个后面将会详细讲解到)
下面是 hibernate.cfg.xml中的内容:
34
35
36
37
38
<?xml version='1.0' encoding='utf-8'?>
<!doctype hibernate-configuration public
"-//hibernate/hibernate configuration dtd 3.0//en"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- database connection settings 数据库的配置 -->
<property name="connection.driver_class">com.mysql.jdbc.driver</property>
<property name="connection.url">jdbc:mysql://localhost/hibernate</property>
<property name="connection.username">root</property>
<property name="connection.password">himi</property>
<!-- jdbc connection pool (use the built-in) hibernate自带连接池,暂不使用 -->
<!-- <property name="connection.pool_size">1</property> -->
<!-- sql dialect 数据库方言,这里我们才爱用mysql-->
<property name="dialect">org.hibernate.dialect.mysqldialect</property>
<!-- enable hibernate's automatic session context management 新功能,暂不使用 -->
<!-- <property name="current_session_context_class">thread</property> -->
<!-- disable the second-level cache 二级缓存,放置不管 -->
<property name="cache.provider_class">org.hibernate.cache.nocacheprovider</property>
<!-- echo all executed sql to stdout 设置show_sql为true表示让hibernate将生成sql语句在控制台打印出来 -->
<property name="show_sql">true</property>
<!-- drop and re-create the database schema on startup 是否让hibernate自动为我们创建表 -->
<!-- <property name="hbm2ddl.auto">update</property> -->
<mapping resource="com/himi/teacher.hbm.xml"/> <!-- 这里是将需要mapping的文件进行再次声明 -->
</session-factory>
</hibernate-configuration>
这个配置文件我们不要自己写噢,去hibernate的api文档中找到copy,然后简单针对项目进行设置即可;
ok,配置好这个文件其实就是对hibrenate进行的一些配置而已;
下面我们来看teacher.hbm.xml文件:
这个文件的目录与teacher.java默认放置同一级目录,约定俗成没有什么why;那么这个文件是个映射文件,它的主要作用是告诉hibernate我们teacher类中的属性与数据库的哪些字段匹配;ok,看下其中的内容;
(注意这个文件,在hibernate文档中也有例子,我们copy过来进行修改不要自己写!)
<?xml version="1.0"?>
<!doctype hibernate-mapping public
"-//hibernate/hibernate mapping dtd 3.0//en"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.himi"><!-- 路径 -->
<class name="teacher"> <!-- 映射的类名 -->
<id name ="id"/> <!-- 映射的数据库primary key -->
<!-- 下面都是映射我们的其他属性,如果你的数据库中的字段名相同则使用以下形式-->
<property name="name"/>
<property name="age"/>
<property name="gold"/>
<!--如果你的数据库中的字段名不相同则使用以下形式,例如:class 中 name, 数据库为 _name
那么书写形式如下:
<property name="name" column="_name" />
-->
</class>
</hibernate-mapping>
ok, 映射文件写完之后记得要在hibernate的配置文件(hibernate.cfg.xml)中进行声明:
<mapping resource="com/himi/teacher.hbm.xml"/>
ok,下面我们来测试使用,打开我们的maintest.java文件,添加内容如下:
teacher teacher = new teacher();//新建我们需要存储的类对象,并且设置其对象的一些属性
teacher.setid(1);
teacher.setname("himi");
teacher.setage(22);
teacher.setgold(123);
//configuration主要用以读取配置文件
configuration cfg = new configuration();
sessionfactory sf = cfg.configure().buildsessionfactory();
//这里注意了,cfg.configure()读取配置文件的时候,如果你的hibernate的文件名不采用默认的“hibernate.cfg.xml”的话,那么这里传入你定义的配置文件路径
//buildsessionfactory();得到一个创建session的工场
session ss = sf.opensession();//这里的session导入import org.hibernate.session;不要使用class经典的,因为可能会过时
ss.begintransaction();//ok,将操作放入事务中
ss.save(teacher);//保存你的对象
ss.gettransaction().commit();//得到事务并提交
ss.close();//session关闭
sf.close();//工厂关闭
ok,运行你的man函数类,运行结果:
hibernate: insert into teacher (name, age, gold, id) values (?, ?, ?, ?)
然后检验一下数据库中是否正常存入了一条数据:
mysql> select *from teacher;
+----+------+------+------+
| id | name | age | gold |
| 1 | himi | 22 | 123 |
1 row in set (0.00 sec)
噢,哈哈,看到一条 himi 数据正常添加了哈哈~
那么这里再说两点:这里给出3个运行时出现的问题;
1. 出现 “host” ‘xxx.xxx.x.xxx’ is not allowed to connect to this mysql server错误;
解决方法:
允许用户从ip为192.168.1.6的主机连接到mysql服务器,并使用mypassword作为密码
grant all privileges on dk.* to 'myuser'@'192.168.1.3' identified by
'mypassword' with grant option;
flush privileges;
2. 出现 ‘xxx.xxx.x.xxx’ (using password:yes) 错误;
mysql中执行:
grant all on *.* to [email protected] identified by 'himi'
注意这里by 后单引号内是电脑的user的名字;
3.可能有童鞋第一次运行正常,但是第二次运行则出现 duplicate entry ‘1’ for key ‘primary’ 错误;
这个问题是主健重复了的错误~ 因为主键约束: 主键不能为空,也不能重复 !
如果对mysql不了解的,可以先采用从mysql ,truncate 掉你table的数据,再运行就好了!或者将teacher对象的id不要与已存在数据库中的主建id重复即可;