在Struts中使用PlugIn扩展Hibernate

2016-02-19 20:30 14 1 收藏

生活已是百般艰难,为何不努力一点。下面图老师就给大家分享在Struts中使用PlugIn扩展Hibernate,希望可以让热爱学习的朋友们体会到设计的小小的乐趣。

【 tulaoshi.com - 编程语言 】

 

使用Struts的PlugIn技术把HibernateSessionFactory,具体过程如下:  

(1)创建HibernateSessionFactory.java,代码如下:

  package zy.pro.td.util;    import net.sf.hibernate.HibernateException;  import net.sf.hibernate.Session;  import net.sf.hibernate.cfg.Configuration;    /**  * Configures and provides access to Hibernate sessions, tied to the  * current thread of execution. Follows the Thread Local Session  * pattern, see {@link http://hibernate.org/42.html}.  */  public class HibernateSessionFactory {    /**  * Location of hibernate.cfg.xml file.  * NOTICE: Location should be on the classpath as Hibernate uses  * #resourceAsStream style lookup for its configuration file. That  * is place the config file in a Java package - the default location  * is the default Java package.brbr  * Examples: br  * codeCONFIG_FILE_LOCATION = "/hibernate.conf.xml".  * CONFIG_FILE_LOCATION = "/com/foo/bar/myhiberstuff.conf.xml"./code  */  private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";    /** Holds a single instance of Session */  private final ThreadLocal threadLocal = new ThreadLocal();    /** The single instance of hibernate configuration */  private final Configuration cfg = new Configuration();    /** The single instance of hibernate SessionFactory */  private net.sf.hibernate.SessionFactory sessionFactory;    /**  * Returns the ThreadLocal Session instance. Lazy initialize  * the codeSessionFactory/code if needed.  *  * @return Session  * @throws HibernateException  */  public Session currentSession() throws HibernateException {  Session session = (Session) threadLocal.get();    if (session == null) {  if (sessionFactory == null) {  try {  cfg.configure(CONFIG_FILE_LOCATION);  sessionFactory = cfg.buildSessionFactory();  }  catch (Exception e) {  System.err.println("%%%% Error Creating SessionFactory %%%%");  e.printStackTrace();  }  }  session = sessionFactory.openSession();  threadLocal.set(session);  }    return session;  }    /**  * Close the single hibernate session instance.  *  * @throws HibernateException  */  public void closeSession() throws HibernateException {  Session session = (Session) threadLocal.get();  threadLocal.set(null);    if (session != null) {  session.close();  }  }    /**  * Default constructor.  */  public HibernateSessionFactory() {  }    }
  

(2) 创建HibernatePlugIn.java,代码如下:

  package zy.pro.td.plugin;    /*  * Created on Oct 4, 2004  *  * To change the template for this generated file go to  * WindowPreferencesJavaCode GenerationCode and Comments  */  import javax.servlet.ServletException;    import org.apache.struts.action.ActionServlet;  import org.apache.struts.action.PlugIn;  import org.apache.struts.config.ModuleConfig;    import javax.naming.Context;  import javax.naming.InitialContext;    import zy.pro.td.util.HibernateSessionFactory;    /**  * @author sunil  *  *  This class will initialize hibernate and bind SessionFactory in JNDI at the  *  time of application and startup and unbind it from JNDI at the time of application  * shutdown  */  public class HibernatePlugin  implements PlugIn {    private static final String jndi_hibernate = "jndi_hibernate_factory";  private  HibernateSessionFactory hsf;  private String name;    public HibernatePlugin() {  hsf=new HibernateSessionFactory();  }    // This method will be called at the time of application shutdown  public void destroy() {  System.out.println("Entering HibernatePlugIn.destroy()");  //Put hibernate cleanup code here  System.out.println("Exiting HibernatePlugIn.destroy()");  }    //This method will be called at the time of application startup  public void init(ActionServlet actionServlet, ModuleConfig config) throws  ServletException {  System.out.println("Entering HibernatePlugIn.init()");  System.out.println("Value of init parameter " + getName());  //Uncomment next two lines if you want to throw UnavailableException from your servlet  //  if(true)  //    throw new ServletException("Error configuring HibernatePlugIn");  System.out.println("Exiting HibernatePlugIn.init()");  bindFactoryToJNDI();  }    private void bindFactoryToJNDI() {    try {  Context ctx = new InitialContext();  ctx.bind(this.jndi_hibernate,hsf);  System.out.println("bindind the hibernate factory to JNDI successfully");  }  catch (Exception e) {  e.printStackTrace();  }  }    public String getName() {    return name;  }    public void setName(String string) {  name = string;  }  }
  

(3) 配置Struts-config.xml,如下:

  ?xml version="1.0" encoding="UTF-8"?!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"  struts-config  form-beans  form-bean name="userActionForm"type="zy.pro.td.controller.UserActionForm" /  /form-beans  action-mappings  action name="userActionForm" path="/act/log/login" scope="request" type="zy.pro.td.controller.LoginAction" /  /action-mappings  plug-in className="org.apache.struts.tiles.TilesPlugin"  set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" /  /plug-in  plug-in className="org.apache.struts.validator.ValidatorPlugIn"  set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" /  /plug-in  plug-in className="zy.pro.td.plugin.HibernatePlugin" /  plug-in className="zy.pro.td.plugin.HibernateSessionFactoryPlugIn" /  /struts-config    这一部分就是你的嵌入代码
  

(4)创建ActionForm,代码如下:

  package zy.pro.td.controller;    import org.apache.struts.action.*;  import javax.servlet.http.*;    public class UserActionForm extends ActionForm {  private String password;  private String username;  public String getPassword() {  return password;  }  public void setPassword(String password) {  this.password = password;  }  public String getUsername() {  return username;  }  public void setUsername(String username) {  this.username = username;  }  public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {  /**@todo: finish this method, this is just the skeleton.*/  return null;  }  public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {  }  }
  

(5)创建Action

  package zy.pro.td.controller;    import org.apache.struts.action.*;  import javax.servlet.http.*;  import javax.naming.Context;  import javax.naming.InitialContext;  import net.sf.hibernate.SessionFactory;  import net.sf.hibernate

来源:https://www.tulaoshi.com/n/20160219/1623864.html

延伸阅读
标签: Java JAVA基础
你希望在jsp中建立一个邮件发送收取工具吗?下面将介绍的就是在jsp中建立一个邮件发送收取工具。在这篇文章中你可以了解到 Java Mail API的一些要点以及如何在 JSP中使用它。本文中还包括了在 JSP中使用 Java Mail的实例。 Java Mail是 JSP应用软件中相当强大的API。 阅读这篇文章需要对 JSP、 Java Beans和 Java Mail...
标签: Java JAVA基础
在 struts+ hibernate 这种结构中,是不应该把Hibernate产生的PO直接传递给JSP的,不管他是Iterator,还是List,这是一个设计错误。 我来谈谈在J2EE架构中各层的数据表示方法: Web层的数据表示是FormBean,数据来源于HTML Form POST 业务层的数据表示是VO 持久层的数据表示是PO,其数据来源于数据库,...
标签: Java JAVA基础
安装篇 一,下载安装 j2sdk1.4(www.sun.com))或以上,设置 CLASSPATH,java_home。 二,下载服务器,免费版本的有 tomcat,resin,当然也还有 weblogic之类的巨无霸,不过得看你电脑的配置是否承受的了! 这里只以resin来说明,其他的配置都差不多,可以查看各个服务器自带的说明文件。 resin 服务器可...
标签: ASP
创建对象 在VBScript中创建对象类型(类)时,你首先要知道,这真的很容易!我在一个下午自学,只是阅读了Microsof VB Script 的参考书,但必须承认,这书不是最容易阅读的文档。 初学者需要安装VBScript 5.0引擎,可以在Microsoft's Scripting Site下载。 我们来看代码。类的定义与函数和子过程非常类似。起始行为Class ,结尾是End C...
    我们已经熟悉在 ASP 中通过调用 SQL Server 存储过程来执行数据库操作,不过大家是否知道,在桌面级数据库 Access 中,我们也能够创建并使用“存储过程”? Access + ASP 是开发轻量级 Web 应用程序的绝佳组合:简单,快速,兼容性好,但是性能通常不高。并且,用 ADODB.Connection 和 Recordset 对象来执行 SQL 语句的方式...

经验教程

294

收藏

94
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部