第一次使用并配置Hibernate
1. 环境配置
1.1 hiberante环境配置
hibernate可实现面向对象的数据存储。hibernate的官网:http://hibernate.org/ 官网上选择hibernate ORM,可以下载最新的hibernate,还有配套的document教程 http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/ 。下载到的hibernate文件夹中有document文档(hibernate\documentation\manual\en-US\html_single)。发现hibernate4.3.1的文件夹中的文档和网站上提供的答案不太一样,官网的文档更详细一些,还附有toturial的源代码。
打开eclipse->windows->preferences->java->build path->user libraries,点击new,新建一个library,可取名为hibernate。点击Add JARs,选择hibernate->lib->required中的所有jar文件,另外还需要加上数据库的connector文件。因为使用的是SQL Server,所以我这里用到的 SQLServer 的的jar文件。这个jar文件从哪里得到呢?安装SQL Server服务器产生的文件夹里面是没有jar文件的。我们需要另下载一个SQLSQL的JDBC jar包。可以自行网上搜索下载
--使用的是 SQL Server 2008 (RTM) /*建立一个测试用的数据库 hibernate 并创建一个实体类对应的表,表的列名最好与 javaebean 中实体类的成员变量保持一致 */ IF DB_ID(N'hibernate') IS NOT NULL DROP DATABASE hibernate GO CREATE DATABASE hibernate ON PRIMARY( name='hibernate', filename='F:\DATA\hibernate.mdf', size= 512 MB, maxsize=unlimited, filegrowth=10% ) log on( name='hibernate_log', filename='F:\DATA\hibernate_log.ldf', size=512 MB, maxsize=1024 MB, filegrowth=5% ) GO USE hibernate GO CREATE TABLE student(id int,age int,name varchar(20))
3. JAVA application 工程
package com.yli.hibernate; public class Student { private int id; public int getId() { return id; } public void setId(int id) { this.id = id; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } private int age; private String name; }
4. 配置 hibernate.cfg.xml 文件,这个放在 src 下即可 (也即 class path 根目录下,省去加载的麻烦),至于如何配置可以去查看文档 (http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/)
<?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> <!-- Database connection settings --> <property name="connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property> <property name="connection.url">jdbc:sqlserver://localhost:1433;DatabaseName=hibernate</property> <property name="connection.username">yli</property> <property name="connection.password">123</property> <!-- JDBC connection pool (use the built-in) --> <!-- <property name="connection.pool_size">1</property> --> <!-- SQL dialect --> <property name="dialect">org.hibernate.dialect.SQLServer2008Dialect</property> <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> <!-- Enable Hibernate's automatic session context management --> <!--<property name="current_session_context_class">thread</property>--> <!-- Drop and re-create the database schema on startup --> <!-- <property name="hbm2ddl.auto">create</property> --> <!-- Disable the second-level cache --> <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property> <mapping resource="com/yli/hibernate/Student.hbm.xml"/> </session-factory> </hibernate-configuration>
<!--从网上来的,写得很好--> <!--标准的XML文件的起始行,version='1.0'表明XML的版本,encoding='gb2312'表明XML文件的编码方式--> <?xml version='1.0' encoding='gb2312'?> <!--表明解析本XML文件的DTD文档位置,DTD是Document Type Definition 的缩写,即文档类型的定义,XML解析器使用DTD文档来检查XML文件的合法性。hibernate.sourceforge.net/hibernate-configuration-3.0dtd可以在Hibernate3.1.3软件包中的src\org\hibernate目录中找到此文件--> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!--声明Hibernate配置文件的开始--> <hibernate-configuration> <!--表明以下的配置是针对session-factory配置的,SessionFactory是Hibernate中的一个类,这个类主要负责保存HIbernate的配置信息,以及对Session的操作--> <session-factory> <!--配置数据库的驱动程序,Hibernate在连接数据库时,需要用到数据库的驱动程序--> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver </property> <!--设置数据库的连接url:jdbc:mysql://localhost/hibernate,其中localhost表示mysql服务器名称,此处为本机, hibernate是数据库名--> <property name="hibernate.connection.url">jdbc:mysql://localhost/hibernate </hibernate> <!--连接数据库是用户名--> <property name="hibernate.connection.username">root </property> <!--连接数据库是密码--> <property name="hibernate.connection.password">123456 </property> <!--数据库连接池的大小--> <property name="hibernate.connection.pool.size">20 </property> <!--是否在后台显示Hibernate用到的SQL语句,开发时设置为true,便于差错,程序运行时可以在Eclipse的控制台显示Hibernate的执行Sql语句。项目部署后可以设置为false,提高运行效率--> <property name="hibernate.show_sql">true </property> <!--jdbc.fetch_size是指Hibernate每次从数据库中取出并放到JDBC的Statement中的记录条数。Fetch Size设的越大,读数据库的次数越少,速度越快,Fetch Size越小,读数据库的次数越多,速度越慢--> <property name="jdbc.fetch_size">50 </property> <!--jdbc.batch_size是指Hibernate批量插入,删除和更新时每次操作的记录数。Batch Size越大,批量操作的向数据库发送Sql的次数越少,速度就越快,同样耗用内存就越大--> <property name="jdbc.batch_size">23 </property> <!--jdbc.use_scrollable_resultset是否允许Hibernate用JDBC的可滚动的结果集。对分页的结果集。对分页时的设置非常有帮助--> <property name="jdbc.use_scrollable_resultset">false </property> <!--connection.useUnicode连接数据库时是否使用Unicode编码--> <property name="Connection.useUnicode">true </property> <!--connection.characterEncoding连接数据库时数据的传输字符集编码方式,最好设置为gbk,用gb2312有的字符不全--> <property name="connection.characterEncoding">gbk </property> <!--hibernate.dialect 只是Hibernate使用的数据库方言,就是要用Hibernate连接那种类型的数据库服务器。--> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect </property> <!--指定映射文件为“hibernate/ch1/UserInfo.hbm.xml”--> <mapping resource="org/mxg/UserInfo.hbm.xml"> </session-factory> </hibernate-configuration> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> //连接驱动 <property name="driverClassName" value="${jdbc.driverClassName}" /> //连接url, <property name="url" value="${jdbc.url}" /> //连接用户名 <property name="username" value="${jdbc.username}" /> //连接密码 <property name="password" value="${jdbc.password}" /> </bean> <bean id="hbSessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="configLocation"> //hibernate配置文件位置 <value>WEB-INF/hibernate.cfg.xml </value> </property> <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration" /> <property name="hibernateProperties"> <props> //针对oracle数据库的方言,特定的关系数据库生成优化的SQL <prop key="hibernate.dialect"> org.hibernate.dialect.OracleDialect </prop> //选择HQL解析器的实现 <prop key="hibernate.query.factory_class"> org.hibernate.hql.ast.ASTQueryTranslatorFactory </prop> //是否在控制台打印sql语句 <prop key="hibernate.show_sql">true </prop> //在Hibernate系统参数中hibernate.use_outer_join被打开的情况下,该参数用来允许使用outer join来载入此集合的数据。 <prop key="hibernate.use_outer_join">true </prop> //默认打开,启用cglib反射优化。cglib是用来在Hibernate中动态生成PO字节码的,打开优化可以加快字节码构造的速度 <prop key="hibernate.cglib.use_reflection_optimizer">true </prop> //输出格式化后的sql,更方便查看 <prop key="hibernate.format_sql">true </prop> //“useUnicode”和“characterEncoding”决定了它是否在客户端和服务器端传输过程中进行Encode,以及如何进行Encode <prop key="hibernate.connection.useUnicode">true </prop> //允许查询缓存, 个别查询仍然需要被设置为可缓存的. <prop key="hibernate.cache.use_query_cache">false </prop> <prop key="hibernate.default_batch_fetch_size">16 </prop> //连接池的最大活动个数 <prop key="hibernate.dbcp.maxActive">100 </prop> //当连接池中的连接已经被耗尽的时候,DBCP将怎样处理(0 = 失败,1 = 等待,2 = 增长) <prop key="hibernate.dbcp.whenExhaustedAction">1 </prop> //最大等待时间 <prop key="hibernate.dbcp.maxWait">1200 </prop> //没有人用连接的时候,最大闲置的连接个数 <prop key="hibernate.dbcp.maxIdle">10 </prop> ##以下是对prepared statement的处理,同上。 <prop key="hibernate.dbcp.ps.maxActive">100 </prop> <prop key="hibernate.dbcp.ps.whenExhaustedAction">1 </prop> <prop key="hibernate.dbcp.ps.maxWait">1200 </prop> <prop key="hibernate.dbcp.ps.maxIdle">10 </prop> </props> </property> </bean>
5. 实体类的 映射配置文件 Student.hbm.xml , 放置在 实体类 Student.java 同一层下,并把这个包名 com/.../.../ 配置到第四步中的 hibernate.cfg.xml 中去
<?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 package="com.yli.hibernate"> <class name="Student"> <id name="id"></id> <property name="name"></property> <property name="age"></property> </class> </hibernate-mapping>
6.假设一切完备,就可以建立一个测试类来测试了,正常是用 JUnit 的。
package com.yli.hibernate; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class StudentTest { public static void main(String [] args){ Student s=new Student(); s.setId(1); s.setAge(10); s.setName("Frank"); //最好弄成 单例,不用每次都去 new Configuration cfg =new Configuration(); cfg=cfg.configure(); SessionFactory sf=cfg.buildSessionFactory(); Session sess=sf.openSession(); sess.beginTransaction(); sess.save(s); sess.getTransaction().commit(); sess.close(); } }
二、 使用注解,就省去 Student.hbm.xml 的配置了,直接将 @Entity 等等 注解到实体类的方法或者成员变量上,但是成员变量一般是私有的。
待完善。。。