麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發(fā)設(shè)計 > 正文

Struts中用PlugIn擴展Hibernate的例子

2019-11-18 12:56:44
字體:
供稿:網(wǎng)友

  使用Struts的PlugIn技術(shù)把HibernateSessionFactory,過程如下:
  
  (1) 創(chuàng)建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.<br><br>
  * Examples: <br>
  * <code>CONFIG_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 <code>SessionFactory</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) 創(chuàng)建HibernatePlugIn.java,代碼如下:
  package zy.pro.td.plugin;
  
  /*
  * Created on Oct 4, 2004
  *
  * To change the template for this generated file go to
  * Window>Preferences>Java>Code Generation>Code 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)創(chuàng)建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)創(chuàng)建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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 广州毛片 | 欧美jizzhd极品欧美 | 羞羞答答xxdd在线播放 | 国产手机av在线 | chinese中国真实乱对白 | 久久久资源网 | 精品一区二区在线观看 | 日本在线不卡一区二区 | 国产一区二区精品在线观看 | 久草视频国产在线 | 中国久久久 | 羞羞的视频 | 国产色91 | 懂色粉嫩av久婷啪 | 精品国产一区二区三区四区阿崩 | 午夜精品福利视频 | 欧美日韩夜夜 | 欧美a∨亚洲欧美亚洲 | www.17c亚洲蜜桃 | 99视频在线观看视频 | chengrenyingshi| 精品国产91久久久 | 精品国产精品久久 | 99视频在线观看视频 | 怦然心动50免费完整版 | 99最新地址 | 日韩美香港a一级毛片免费 欧美一级淫片007 | 福利在线免费视频 | 成人免费自拍视频 | 欧美成人免费电影 | 日美黄色片 | av在线一区二区三区四区 | 91色综合综合热五月激情 | 亚洲免费看片网站 | 作爱在线观看 | 亚洲成人在线视频网 | 国产亚洲精品综合一区91 | 日本一区二区久久 | 羞羞视频免费观看网站 | 成年人视频在线免费播放 | 欧美日韩一区,二区,三区,久久精品 |