首页 > 代码库 > [原创]java WEB学习笔记77:Hibernate学习之路---Hibernate 版本 helloword,

[原创]java WEB学习笔记77:Hibernate学习之路---Hibernate 版本 helloword,

本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用

内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系。

本人互联网技术爱好者,互联网技术发烧友

微博:伊直都在0221

QQ:951226918

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 

技术分享

 

 

 

用的是 hibernate-release-4.2.4.Final 版本学习

1.准备Hibernate 开发环境

  1)导入 Hibernate 必须的 jar 包:

    技术分享

  2)加入数据库驱动的 jar 包:

    技术分享

 

2.开发步骤

    1). 创建 Hibernate 配置文件

  hibernate.cfg.xml  必须在src 的根目录下    

 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE hibernate-configuration PUBLIC 3         "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 4         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 5 <hibernate-configuration> 6     <session-factory> 7         <!-- 李恩家数据库的基本信息 --> 8         <property name="connection.username">root</property> 9         <property name="connection.password">zhangzhen</property>10         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>11         <property name="connection.url">jdbc:mysql:///hibernate</property>12         13         14         <!-- 配置hibernate 的节本信息 -->15         <!-- hibernate 所使用的数据库方言 -->16      <!--     <property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>-->17         18         19   <property name="dialect">org.hibernate.dialect.MySQLDialect</property>20         <!-- 执行操作时是否在控制台打印SQL  -->21         <property name="show_sql">true</property>22         23         <!-- 是否都SQL 进行格式化 -->24         <property name="format_sql">true</property>25         26         27         <!-- 指定自动生成数据表的策略 -->28         <property name="hbm2ddl.auto">update</property>29         30         31         <!-- 指定关联的 .hbm.xml 文件 -->32         <mapping resource="hibernate/helloworld/News.hbm.xml"/>33         34     </session-factory>35     36 </hibernate-configuration>

 

  2). 创建持久化类

 News.java

 1 package hibernate.helloworld; 2  3 import java.sql.Date; 4  5 public class News { 6  7     private Integer id; 8     private String title; 9     private String author;10 11     private Date date;12 13     public Integer getId() {14         return id;15     }16 17     public void setId(Integer id) {18         this.id = id;19     }20 21     public String getTitle() {22         return title;23     }24 25     public void setTitle(String title) {26         this.title = title;27     }28 29     public String getAuthor() {30         return author;31     }32 33     public void setAuthor(String author) {34         this.author = author;35     }36 37     public Date getDate() {38         return date;39     }40 41     public void setDate(Date date) {42         this.date = date;43     }44 45     public News() {46         47     }48 49     public News(String title, String author, Date date) {50         super();51         this.title = title;52         this.author = author;53         this.date = date;54     }55 56     @Override57     public String toString() {58         return "News [id=" + id + ", title=" + title + ", author=" + author59                 + ", date=" + date + "]";60     }61     62   63     64     65 }

 

  3). 创建对象-关系映射文件

News.hbm.xml

 1 <?xml version="1.0"?> 2 <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" 3 "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> 4 <!-- Generated 2016-10-3 16:36:59 by Hibernate Tools 3.4.0.CR1 --> 5 <hibernate-mapping> 6     <class name="hibernate.helloworld.News" table="NEWS"> 7      8         <id name="id" type="java.lang.Integer"> 9             <column name="ID" />10             <!-- 指定主键的生成方式:native:使用数据库本地方式 -->11             <generator class="native" />12         </id>13         14         <property name="title" type="java.lang.String">15             <column name="TITLE" />16         </property>17         18         <property name="author" type="java.lang.String">19             <column name="AUTHOR" />20         </property>21         22         <property name="date" type="java.sql.Date">23             <column name="DATE" />24         </property>25          26     </class>27 </hibernate-mapping>

 

 

  4). 通过 Hibernate API 编写访问数据库的代码

HibernateTest.java

 1 package hibernate.helloworld; 2  3 import static org.junit.Assert.*; 4  5 import java.sql.Date; 6  7 import org.hibernate.Session; 8 import org.hibernate.SessionFactory; 9 import org.hibernate.Transaction;10 import org.hibernate.cfg.Configuration;11 import org.hibernate.service.ServiceRegistry;12 import org.hibernate.service.ServiceRegistryBuilder;13 import org.junit.Test;14 15 public class HibernateTest {16 17     @Test18     public void test() {19         20         //1. 创建一个SessionFatory 对象21         SessionFactory sessionFactory =  null;22             23             //1) 创建Configuration 对象:对应hibernate 的基本配置信息 和 对象关系映射信息24                 Configuration configuration = new Configuration().configure();25                 26             //2) 创建一个ServiceRegistry 对象:hibernate 4.x 新天添加的对象。27             //hibernate 的任何配置 和 服务都需要在该对象中注册后才有效28                 ServiceRegistry  serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties())29                                                                                .buildServiceRegistry();30                 31             //    sessionFactory = configuration.buildSessionFactory();32                 sessionFactory = configuration.buildSessionFactory(serviceRegistry);33         34         //2. 创建一个session 对象35                 Session session = sessionFactory.openSession();36         37         //3. 开启事物38             Transaction transaction = session.beginTransaction();39             40         //4.执行保存操作41             News news = new News("java","jason",new Date(new java.util.Date().getTime()));42             session.save(news);43         44         //5.提交事物45             transaction.commit();46         //6.关闭session47             session.close();48         //7.关闭SessionFactory 对象49             sessionFactory.close();50     }51 52 }

 

 

 

 

 

预期结果:在对应的数据库中生成指定的数据表,并且插入指定的数据

  技术分享   技术分享

 

 

 

 

 

 

注意:

  我在学习过程中第一次将数据库的方言设置为 

<property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>

执行的时候 出现了错误:Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table ‘hibernate.news‘ doesn‘t exist

之后参考了百度,stackoverflow,csdn,谷歌,改了数据库连接jar包。。。。。
都没起作用

最后在一篇博客中找到来解决方案:

[转]Hibernate不能自动建表解决办法及Hibernate不同数据库的连接及SQL方言

 

[原创]java WEB学习笔记77:Hibernate学习之路---Hibernate 版本 helloword,