快速业务通道

Struts 2.0整合Hibernate 3.2开发注册登录系统 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
t; 6  <class name="com.rong.ORM.User" table="tb_user"> 7    <id name="id"> 8      <generator class="native"/> 9    </id> 10    <property name="name" type="java.lang.String" length="20"/> 11    <property name="pwd" type="java.lang.String" length="20"/> 12  </class> 13</hibernate- mapping>

Struts 2.0整合Hibernate 3.2开发注册登录系统(3)

时间:2011-09-14 心梦帆影

3、建立"ExportDB.java"工具类,我们执行如下代码,就能轻松将User类导入数据库转变成数据库中 的表。不过,前提是我们已经在MySQL中建立了一个名为"LoginSystem"的数据库。

1package tool; 2 3import org.hibernate.cfg.Configuration; 4import org.hibernate.tool.hbm2ddl.SchemaExport; 5 6public class ExportDB { 7 8   /**//* 9   * 运行此类,通过POJO类和配置文件,生成数据库的表 10   */ 11   public static void main(String[] args){ 12    Configuration cfg = new Configuration ().configure(); 13    SchemaExport export = new SchemaExport(cfg); 14     export.create(true, true); 15  } 16} 17

4、建立获取SessionFactory和管理Session的HibernateUtil.java类:

1package com.rong.hibernate; 2 3import org.hibernate.HibernateException; 4import org.hibernate.Session; 5import org.hibernate.SessionFactory; 6import org.hibernate.cfg.Configuration; 7 8public class HibernateUtil { 9   10  //声明Hibernate配置文件所在的路径 11  private static String configFile = "/hibernate.cfg.xml"; 12  //建Configuration对象 13   private static Configuration configuration = new Configuration(); 14  //建Session工厂对 象 15  private static SessionFactory sessionFactory = null; 16   17  /** *//** 18   * 单例模式,只初始化一次,只产生一个SessionFactory对象(线程安全) 19   */ 20  static { 21    try{ 22      //通过hibernate.cfg.xml配置数据库连 接 23      configuration.configure(configFile); 24      //建立一个Session 工厂 25      sessionFactory = configuration.buildSessionFactory(); 26       System.out.println("[标记]初始化SessionFactory"); 27    }catch(Exception e){ 28       System.out.println("[异常]创建SessionFactory时发生异常,异常原因如下:"); 29       e.printStackTrace(); 30    } 31  } 32   33  /** *//** 34    * getSession()方法 35   * @return Session对象 36   * @throws HibernateException 37   */ 38  public Session getSession(){ 39    Session session = null; 40    try{ 41      session = sessionFactory.openSession (); 42    }catch(Exception e){ 43      System.out.println("[异常]开启Session 时发生异常,异常原因如下:"); 44      e.printStackTrace(); 45    } 46     return session; 47  } 48   49  /** *//** 50   * closeSession()方法 51   * @param session 要关闭的Session对象 52   */ 53  public void closeSession(Session session){ 54    try{ 55      i

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号