4 配置Hibernate

Hibernate MySql连接配置

在Hibernate中,可以配置很多种数据库,例如MySql、Sql Server和Oracle,Hibernate MySql连接配置举例如下

出错“The processing instruction must begin with the name of the target”,看了几遍xml文件的内容也没发现什么特别,在网上搜了搜发现还是个通病,很多人都遇到过这种问题。其原因是

<? xml version = "1.0" encoding = "UTF-8" ?> 的问号和"xml"之间多了个空格,去掉空格后<?xml version = "1.0" encoding = "UTF-8" ?>就ok了。

hibernate.cfg.xml出错:The content of element type "property" must match "(meta*,(column|formula)*   恩,根据我的经验,可能是你的映射文件没有写好的原因,还有就是property标签的相对应属性值的value写的不对!!!!!

这样说吧,假如你在建立一个类,叫Student,包名字叫做com.bjsxt.hibernate.model

你就得建立一个映射文件,名字叫做Student.hbm.xml里面的内容的package属性就是com.bjsxt.hibernate.model



解决;

项目名上右键--〉myeclipse-->add hibernate capabilites -->next-->hibernate config file --> existing -->选择现有工程存在的hibernate配置文件--> next --> 不生成factory class --> end



  • 添加库文件
    • 从www.hibernate.org网站下载Hibernate发布包(如hibernate.jar),从www.mysql.com下载MySQL的JDBC驱动程序jar包,将这两个jar包放在lib目录
    • 将以下jar包拷到lib目录中:asm.jar、cglib-2.1.3.jar、commons-collections-2.1.1.jar、commons-logging-1.0.4.jar、dom4j-1.6.1.jar、ehcache-1.1.jar、jta.jar
    • 在工程的classpath中包含上述库文件

建立持久化类

例如Product.java:

package test;

//持久化类

public class Product 

{





    private int id ;

    private String name ;

    public Product()

   {





   }

    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;





    }     

}

编写反映持久化类与数据库表映射关系的Hibernate映射文件

例如Product.hbm.xml:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE hibernate-mapping PUBLIC

      "-// Hibernate /Hibernate Mapping DTD 3.0//EN"

      "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="test">

      <class name="Product" table="product" catalog="factory">

           <id name="id" column="id" type=" int ">

                  <generator class="native"/>

           </id>

           <property name="name" column="name" type="java.lang.String" length="255" unique="false"/>

      </class>

</hibernate-mapping>

编写Hibernate配置文件

并在配置文件中通过mapping元素加入持久化类与数据库表映射的信息,即通过resource指定上一步建立的映射文件的位置。例如
Hibernate.cfg.xml

<?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>





            <property name = "connection.driver_class">com.mysql.jdbc.Driver</property>





            <property name = "connection.url">jdbc:mysql://127.0.0.1:3306/factory</property>





            <property name = "connection.username"></property>





            <property name = "connection.password"></property>





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





            <property name = "hbm2ddl.auto">create</property>





            <property name = "show_sql">true</property>





            <property name = "format_sql">true</property>





            <mapping resource = "Product.hbm.xml"/>





      </session-factory>

</hibernate-configuration>

使用ThreadLocal控制Session

例如:

package
test;





import org.apache.commons.logging.Log;

import org.apache.commons.logging.LogFactory;

import org.hibernate.HibernateException;

import org.hibernate.Session;

import org.hibernate.cfg.Configuration;





public class HibernateSessionFactory {

     private static Log log = LogFactory.getLog(HibernateSessionFactory.class);

     

     // Path of configuration file

     private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";

     private static String configFile = CONFIG_FILE_LOCATION;





     // Use ThreadLocal to control Session object

     private static final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>();

     private static Configuration configuration = new Configuration();

     private static org.hibernate.SessionFactory sessionFactory;





     /**

     * Abstraction: Obtain Session

     */

     public static Session getSession() throws HibernateException {

          Session session = threadLocal.get();





          // Rebulid Session object if there is no session in ThreadLocal

          if (session == null || !session.isOpen()) {

               if (sessionFactory == null) {

                    rebuildSessionFactory();

               }

               // Obtain Session object

               session = (sessionFactory != null) ? sessionFactory.openSession()

                         : null;

               threadLocal.set(session);

          }          

          return session;

     }





     /**

     * Abstract: Build SessionFactory object

     */

     public static void rebuildSessionFactory() {

          try {

               // Initial application using configuration file

               configuration.configure(configFile);

               // Create SessionFactory object according to the configuration

               // Data model can be created in MySQL automatically after execute this method

               sessionFactory = configuration.buildSessionFactory();

          } catch (Exception e) {

               e.printStackTrace();

          }

     }





     /**

     * Abstraction: Close Session object

     */

     public static void closeSession() throws HibernateException

     {

          Session session = (Session) threadLocal.get();

          threadLocal.set(null);

          if (session != null)

          {

               session.close();

          }          

     }

}

在src目录下建立 ehcache.xml文件,内容如下:

<ehcache>

<diskStore path="java.io.tmpdir"/>

<defaultCache

    maxElementsInMemory="10000"

    eternal="false"

    timeToIdleSeconds="10000"

    timeToLiveSeconds="10000"

    overflowToDisk="true"

/>

  <cache  name="com.hour41.hibernate.vo.common.City"

    maxElementsInMemory="10000"

    eternal="false"

    timeToIdleSeconds="10000"

    timeToLiveSeconds="10000"

    overflowToDisk="true"

/>

</ehcache>

  • 使用Session操作数据库
    • 经过上述过程,就可完成Hibernate的配置了,接下来可以编写程序操作数据库。
    • 具体实例:
  • package test;





    import org.hibernate.Session;

    import org.hibernate.Transaction;





    import test.Product;

    import test.HibernateSessionFactory;





    public class Main {

         public static void main(String [] args)

         {

              // Get session

              Session session = HibernateSessionFactory.getSession();

              Transaction tx = null;

              try

              {

                   // Begin transaction

                   tx = session.beginTransaction();

                   

                   // Create a Product object and set its property

                   Product product = new Product();

                   product.setName("Apple");

                  

                   // Save the object

                   session.save(product);

                   // Commin

                   tx.commit();

              }

              catch (Exception e)

              {

                   if (tx != null)

                   {

                        tx.rollback();

                   }

                   try

                   {

                        // Spread the exception

                        throw e;

                   }

                   catch (Exception e2)

                   {

                        e2.printStackTrace();

                   }

              }

              finally

              {

                   // Close the session

                   session.close();

              }

         }

    }

SSH三大框架整合配置详细步骤(2)的更多相关文章

  1. SSH三大框架整合配置详细步骤(3)

    5 配置Spring2.5 5.1 基础配置 1)        导入spring包.下载spring-framework-2.5.6并解压后,在spring-framework-2.5.6" ...

  2. SSH三大框架整合配置详细步骤(1)

    配置Struts2.0 3.1 基础配置 1)引入Struts必需的五个jar包.下载struts-2.1.6-all.zip解压后,struts-2.1.6\lib目录下是struts所有的相关ja ...

  3. SSH三大框架整合配置详解

    首先,三大框架整合,肯定是要导入相当多的jar包,这是不容置疑的!     这里就不一一列举了,直接截图吧:             (1) 基于配置文件的整合:        第一步:我们需要在we ...

  4. Maven SSH三大框架整合的加载流程

    <Maven精品教程视频\day02视频\03ssh配置文件加载过程.avi;> 此课程中讲 SSH三大框架整合的加载流程,还可以,初步接触的朋友可以听一听. < \day02视频\ ...

  5. SSH三大框架整合案例

    SSH三大框架的整合   SSH三个框架的知识点 一.Hibernate框架 1. Hibernate的核心配置文件 1.1 数据库信息.连接池配置 1.2 Hibernate信息 1.3 映射配置 ...

  6. JavaWeb_(SSH)三大框架整合struts+hibernate+spring_Demo

    三大框架整合 一.SSH导包 二.书写Spring 三.书写Struts 四.整合Spring与Struts 五.书写(与整合)Hibernate.引入c3p0连接池并使用hibernate模板 六. ...

  7. 关于ssh三大框架整合的碎碎念

    三大框架整合,无非就是一个导jar包,修改配置文件的过程.完了就没事了. 还是有很多细节性的问题 比如在spring中写applicationContext.xml文件时不提示: 解决方法如下: 如果 ...

  8. 吴裕雄--天生自然JAVA SPRING框架开发学习笔记:SSM(Spring+Spring MVC+MyBatis)框架整合搭建详细步骤

    因为 Spring MVC 是 Spring 框架中的一个子模块,所以 Spring 与 SpringMVC 之间不存在整合的问题.实际上,SSM 框架的整合只涉及 Spring 与 MyBatis ...

  9. SSH三大框架整合步骤

    Struts2:需要整合的第一个框架: 1.创建一个动态web项目 2.导入struts2必须的jar 放到 lib目录下 ,再 build path 添加web工程中 3.配置struts2的核心配 ...

随机推荐

  1. Django之web本质

    Django之web本质 Web的本质,是基于socket玩的. 在我们上网的过程中,一个访问请求是如何工作的. Web的框架: 网络的连接都是基于Socket 在连接中有TCP/UDP 和HTTP协 ...

  2. C#中的ComboBox实现只能选择不能输入,且下拉框中有默认值。

    下拉框有DropDownStyle这一属性,把DropDownStyle类型选为DropDownList,则下拉框只能选择不能输入了.但是这时的下拉框是没有默认值的,即使在Text属性中输入默认值,也 ...

  3. 性能测试工具 - ab 简单应用

    之前知道一般网站性能可以通过 LoadRunner, JMeter, QTP 等相应的软件进行测试, 印象中本科学习 “软件测试” 这门课程时安装并使用过, LoadRunner等不是一个小软件, 安 ...

  4. laravel groupby分组问题。

    laravel 5.7使用groupBy分组查询时会提示一个错误,但是sql可以执行. 因为:mysql从5.7以后,默认开启了严格模式. 解决方法:将/config/database.php 中:关 ...

  5. 【思维+贪心】codeforces Game of the Rows

    http://codeforces.com/contest/839/problem/B [题意] 给定n组人,告诉每组人的人数,这些人要在飞机上坐座位 飞机上座位的分布看图可以知道,12  3456 ...

  6. docker改变镜像源

    sudo echo “DOCKER_OPTS=\”\$DOCKER_OPTS –registry-mirror=http://your-id.m.daocloud.io -d\”” >> ...

  7. TOYS(poj 2318)

    题意:就是给了m个点,落在n+1个区域中,问各个区域有多少个点. /* 对于每个玩具,二分其所在的区间,然后用叉积判断. 但是我觉得枚举好像时间复杂度也可以. */ #include<cstdi ...

  8. 洛谷P2057 善意的投票

    题目描述 幼儿园里有n个小朋友打算通过投票来决定睡不睡午觉.对他们来说,这个问题并不是很重要,于是他们决定发扬谦让精神.虽然每个人都有自己的主见,但是为了照顾一下自己朋友的想法,他们也可以投和自己本来 ...

  9. [Usaco2006 Nov]Bad Hair Day 乱发节

    Time Limit: 2 Sec  Memory Limit: 64 MBSubmit: 1268  Solved: 625[Submit][Status][Discuss] Description ...

  10. 高精度模板(From JCVB)

    #include<cstdio> #include<algorithm> #include<cstring> #include<iostream> #i ...