Hibernate快速入门
学习一个框架无非就是三个步骤:
-
引入jar开发
-
配置相关的XML文件
- 熟悉API
引入相关jar包
我们使用的是Hibernate3.6的版本
hibernate3.jar核心 + required 必须引入的(6个) + jpa 目录 + 数据库驱动包
这里写图片描述
编写对象和对象映射
编写一个User对象->User.java
public class User { private int id; private String username; private String password; private String cellphone; //各种setter和getter }
编写对象映射->User.hbm.xml。一般它和JavaBean对象放在同一目录下
我们是不知道该XML是怎么写的,可以搜索一下Hibernate文件夹中后缀为.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"> <!-- This mapping demonstrates content-based discrimination for the table-per-hierarchy mapping strategy, using a formula discriminator. --> <hibernate-mapping package="org.hibernate.test.array"> <class name="A" lazy="true" table="aaa"> <id name="id"> <generator class="native"/> </id> <array name="bs" cascade="all" fetch="join"> <key column="a_id"/> <list-index column="idx"/> <one-to-many class="B"/> </array> </class> <class name="B" lazy="true" table="bbb"> <id name="id"> <generator class="native"/> </id> </class> </hibernate-mapping>
-
在上面的模板上修改~下面会具体讲解这个配置文件!
<!--在domain包下--> <hibernate-mapping package="zhongfucheng.domain"> <!--类名为User,表名也为User--> <class name="User" table="user"> <!--主键映射,属性名为id,列名也为id--> <id name="id" column="id"> <!--根据底层数据库主键自动增长--> <generator class="native"/> </id> <!--非主键映射,属性和列名一一对应--> <property name="username" column="username"/> <property name="cellphone" column="cellphone"/> <property name="password" column="password"/> </class> </hibernate-mapping>
主配置文件
hibernate.cfg.xml
如果使用Intellij Idea生成的Hibernate可以指定生成出主配置文件hibernate.cfg.xml
,它是要放在src目录下的
如果不是自动生成的,我们可以在Hibernate的hibernate-distribution-3.6.0.Final\project\etc
这个目录下可以找到
它长得这个样子:
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="connection.url."/> <property name="connection.driver_class"/> <property name="connection.username"/> <property name="connection.password"/> <!-- DB schema will be updated if needed --> <!-- <property name="hbm2ddl.auto">update</property> --> </session-factory> </hibernate-configuration>
通过上面的模板进行修改,后面会有对该配置文件进行讲解!
<hibernate-configuration> <!-- 通常,一个session-factory节点代表一个数据库 --> <session-factory> <!-- 1. 数据库连接配置 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.url">jdbc:mysql:///zhongfucheng</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">root</property> <!-- 数据库方法配置, hibernate在运行的时候,会根据不同的方言生成符合当前数据库语法的sql --> <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property> <!-- 2. 其他相关配置 --> <!-- 2.1 显示hibernate在运行时候执行的sql语句 --> <property name="hibernate.show_sql">true</property> <!-- 2.2 格式化sql --> <property name="hibernate.format_sql">true</property> <!-- 2.3 自动建表 --> <property name="hibernate.hbm2ddl.auto">create</property> <!--3. 加载所有映射--> <mapping resource="zhongfucheng/domain/User.hbm.xml"/> </session-factory> </hibernate-configuration>
测试
package zhongfucheng.domain; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.classic.Session; /** * Created by ozc on 2017/5/6. */ public class App { public static void main(String[] args) { //创建对象 User user = new User(); user.setPassword("123"); user.setCellphone("122222"); user.setUsername("nihao"); //获取加载配置管理类 Configuration configuration = new Configuration(); //不给参数就默认加载hibernate.cfg.xml文件, configuration.configure(); //创建Session工厂对象 SessionFactory factory = configuration.buildSessionFactory(); //得到Session对象 Session session = factory.openSession(); //使用Hibernate操作数据库,都要开启事务,得到事务对象 Transaction transaction = session.getTransaction(); //开启事务 transaction.begin(); //把对象添加到数据库中 session.save(user); //提交事务 transaction.commit(); //关闭Session session.close(); } }
值得注意的是:JavaBean的主键类型只能是int类型,因为在映射关系中配置是自动增长的,String类型是不能自动增长的。如果是你设置了String类型,又使用了自动增长,那么就会报出下面的错误!
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'zhongfucheng.user' does
执行完程序后,Hibernate就为我们创建对应的表,并把数据存进了数据库了
这里写图片描述
我们看看快速入门案例的代码用到了什么对象吧,然后一个一个讲解
public static void main(String[] args) { //创建对象 User user = new User(); user.setPassword("123"); user.setCellphone("122222"); user.setUsername("nihao"); //获取加载配置管理类 Configuration configuration = new Configuration(); //不给参数就默认加载hibernate.cfg.xml文件, configuration.configure(); //创建Session工厂对象 SessionFactory factory = configuration.buildSessionFactory(); //得到Session对象 Session session = factory.openSession(); //使用Hibernate操作数据库,都要开启事务,得到事务对象 Transaction transaction = session.getTransaction(); //开启事务 transaction.begin(); //把对象添加到数据库中 session.save(user); //提交事务 transaction.commit(); //关闭Session session.close(); }
Configuration
配置管理类:主要管理配置文件的一个类
它拥有一个子类AnnotationConfiguration,也就是说:我们可以使用注解来代替XML配置文件来配置相对应的信息
这里写图片描述
configure方法
configure()方法用于加载配置文件
-
加载主配置文件的方法
-
如果指定参数,那么加载参数的路径配置文件
-
**如果不指定参数,默认加载src/目录下的hibernate.cfg.xml **
-
如果指定参数,那么加载参数的路径配置文件
buildSessionFactory方法
buildSessionFactory()用于创建Session工厂
SessionFactory
SessionFactory-->Session的工厂,也可以说代表了hibernate.cfg.xml这个文件…hibernate.cfg.xml的就有<session-factory>
这么一个节点
openSession方法
创建一个Session对象
getCurrentSession方法
创建Session对象或取出Session对象