StrutsのHibernate統合の例

Struts + Hibernate統合の例

チュートリアルでは、Apache Strutsの1.xにして開発されたWebアプリケーションで使ったHibernateを統合する方法を表示します

ダウンロード–Struts-Hibernate-Example.zip

統合の手順:

  1. 新しいHibernate Struts plug-inファイルを作成してHibernateセッションファクトリをサーブレットコンテキストに設定し、このファイルをstruts-config.xmlファイルに含めます。

  2. Strutsで、Hibernate session factory from servlet contextを取得し、必要なHibernateタスクを実行します。

1. Hibernate Strutsプラグイン

Hibernate Strutsプラグインを作成し、Hibernateセッションファクトリを取得して、後のユーザー(servlet.getServletContext().setAttribute(KEY_NAME, factory);)のサーブレットコンテキストに保存します。

package com.example.common.plugin;

import java.net.URL;
import javax.servlet.ServletException;

import org.apache.struts.action.ActionServlet;
import org.apache.struts.action.PlugIn;
import org.apache.struts.config.ModuleConfig;
import org.hibernate.HibernateException;
import org.hibernate.MappingException;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernatePlugin implements PlugIn {
   private Configuration config;
   private SessionFactory factory;
   private String path = "/hibernate.cfg.xml";
   private static Class clazz = HibernatePlugin.class;

   public static final String KEY_NAME = clazz.getName();

   public void setPath(String path) {
      this.path = path;
   }

   public void init(ActionServlet servlet, ModuleConfig modConfig)
      throws ServletException {

      try {

         //save the Hibernate session factory into serlvet context
         URL url = HibernatePlugin.class.getResource(path);
         config = new Configuration().configure(url);
         factory = config.buildSessionFactory();
         servlet.getServletContext().setAttribute(KEY_NAME, factory);

      } catch (MappingException e) {
         throw new ServletException();
      } catch (HibernateException e) {
         throw new ServletException();
      }

   }

   public void destroy() {
      try {
         factory.close();
      } catch (HibernateException e) {
         e.printStackTrace();
      }
   }
}

2. struts-config.xml

Hibernate Struts plug-inをStruts構成ファイル(struts-config.xml)に含めます。


    ...
    
        
    
    ...

3. Hibernateセッションファクトリを取得する

Strutsアクションクラスでは、Hibernate session factory from servlet contextを取得できます。

servlet.getServletContext().getAttribute(HibernatePlugin.KEY_NAME);

通常のHibernateタスクを実行します。

package com.example.customer.action;

import java.util.Date;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.beanutils.BeanUtils;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.hibernate.Session;
import org.hibernate.SessionFactory;

import com.example.common.plugin.HibernatePlugin;
import com.example.customer.form.CustomerForm;
import com.example.customer.model.Customer;

public class AddCustomerAction extends Action{

  public ActionForward execute(ActionMapping mapping,ActionForm form,
    HttpServletRequest request,HttpServletResponse response)
  throws Exception {

        SessionFactory sessionFactory =
             (SessionFactory) servlet.getServletContext()
                            .getAttribute(HibernatePlugin.KEY_NAME);

    Session session = sessionFactory.openSession();

    CustomerForm customerForm = (CustomerForm)form;
    Customer customer = new Customer();

    //copy customerform to model
    BeanUtils.copyProperties(customer, customerForm);

    //save it
    customer.setCreatedDate(new Date());

    session.beginTransaction();
    session.save(customer);
    session.getTransaction().commit();

    return mapping.findForward("success");

  }
}

完了しました。