hibernate框架应用在javaee三层结构中 dao层框架,在dao层里面做对数据库crud操作,使用hibernate实现crud操作,hibernate底层代码就是jdbc,hibernate对jdbc进行封装,使用hibernate好处,不需要写复杂jdbc代码了,
不需要写sql语句实现。
hibernate不需要创建表,你只要创建实体类,通过配置实体类和数据库表一一对应关系,他就会帮助我们在数据库中自己创建表。
hibernate的配置文件:
<?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> <!-- 第一部分: 配置数据库信息 必须的 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost/hibernate_day01</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">123</property> <!-- 第二部分: 配置hibernate信息 可选的--> <!-- 输出底层sql语句 --> <property name="hibernate.show_sql">true</property> <!-- 输出底层sql语句格式 --> <property name="hibernate.format_sql">true</property> <!-- hibernate帮创建表,需要配置之后 update: 如果已经有表,更新,如果没有,创建 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 配置数据库方言 在mysql里面实现分页 关键字 limit,只能使用mysql里面 在oracle数据库,实现分页rownum 让hibernate框架识别不同数据库的自己特有的语句 --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 第三部分: 把映射文件放到核心配置文件中 必须的--> <mapping resource="cn/itcast/entity/User.hbm.xml"/> </session-factory> </hibernate-configuration>
实体类:
package cn.itcast.entity; public class User { /*hibernate要求实体类有一个属性唯一的*/ private int uid; private String username; private String password; private String address; public String getUsername() { return username; } public int getUid() { return uid; } public void setUid(int uid) { this.uid = uid; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } }
实体类的映射配置:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <!-- 1 配置类和表对应 class标签 name属性:实体类全路径 table属性:数据库表名称 --> <class name="cn.itcast.entity.User" table="t_user"> <!-- 2 配置实体类id和表id对应 hibernate要求实体类有一个属性唯一值 hibernate要求表有字段作为唯一值 --> <!-- id标签 name属性:实体类里面id属性名称 column属性:生成的表字段名称 --> <id name="uid" column="uid"> <!-- 设置数据库表id增长策略 native:生成表id值就是主键自动增长 --> <generator class="native"></generator> </id> <!-- 配置其他属性和表字段对应 name属性:实体类属性名称 column属性:生成表字段名称 --> <property name="username" column="username"></property> <property name="password" column="password"></property> <property name="address" column="address"></property> </class> </hibernate-mapping>
加载核心配置文件:静态代码块的作用是,在创建sessionFactory过程中特别耗资源,一个项目中一般只创建一个,静态代码块在类加载时候执行,执行一次。
package cn.itcast.utils; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class HibernateUtils { private static Configuration cfg = null; private static SessionFactory sessionFactory = null; //静态代码块实现 static { //加载核心配置文件 cfg = new Configuration(); cfg.configure(); sessionFactory = cfg.buildSessionFactory(); } //提供方法返回sessionFactory public static SessionFactory getSessionFactory() { return sessionFactory; } }
Crud操作:
package cn.itcast.hibernatetest; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.junit.Test; import cn.itcast.entity.User; import cn.itcast.utils.HibernateUtils; public class HibernateDemo { @Test public void testAdd() { // 第一步,加载核心配置文件 SessionFactory sessionFactory = HibernateUtils.getSessionFactory(); // 第二步 使用SessionFactory创建session对象 // 类似于连接 Session session = sessionFactory.openSession(); // 第三步 开启事务 Transaction tx = session.beginTransaction(); // 第四步 写具体逻辑 crud操作 //添加功能 System.out.println(User.class+"aaaaa"); User user = new User(); user.setUsername("小明"); user.setPassword("123456"); user.setAddress("中国"); //调用session的方法实现添加 session.save(user); // 第五步 提交事务 tx.commit(); // 第六步 关闭资源 session.close(); sessionFactory.close(); } }