hibernate sessionフィルタ制御


最近会社のプロジェクトをしているDemoは、jsp+dwr+hibernateという技術を使っています.このDemoで使われているテーブルが多く、一対一、一対多と多対一の関係があるため、hibernateの遅延ロード(lazy=「true」)を利用することは性能の向上にかなり重要ですが、それに伴うsession管理がより重要で、遅延ロード異常がよく発生しません.ここで私はFilterを利用してsessionのcloseを処理しました.関連コードは以下の通りです.
 
1.HibernateSessionFactory.JAva(Eclipse自動生成、ThreadLocalによりセッションの非スレッドを安全にする)
import org.apache.log4j.Logger;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;


public class HibernateSessionFactory {

    private static final Logger log = Logger.getLogger(SessionFactory.class) ;
	private static final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>();
    private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";
    private static Configuration configuration = new Configuration();
    private static org.hibernate.SessionFactory sessionFactory;
    private static String configFile = CONFIG_FILE_LOCATION;

	static {
    	try {
			configuration.configure(configFile);
			sessionFactory = configuration.buildSessionFactory();
		} catch (Exception e) {
			
			log.error(" error creating sessionFactory") ;
			e.printStackTrace();
		}
    }
    public HibernateSessionFactory() {
    }
	

    public static Session getSession() throws HibernateException {
    	log.info("getSession is run") ;
    	
        Session session = (Session) threadLocal.get();
		if (session == null || !session.isOpen()) {
			log.info("SessionFactory.getSession() session is null or close") ;
			if (sessionFactory == null) {
				log.info("SessionFactory.getSession() rebuildSessionFactory() is running") ;
				rebuildSessionFactory();
			} 
			session = (sessionFactory != null) ? sessionFactory.openSession(): null;
			threadLocal.set(session);
		}

        return session;
    }


	public static void rebuildSessionFactory() {
		log.info("rebuildSessionFactory is run") ;
		try {
			configuration.configure(configFile);
			sessionFactory = configuration.buildSessionFactory();
		} catch (Exception e) {
			log.error("erro creating sessionFactory") ;
			e.printStackTrace();
		}
	}


    public static void closeSession() throws HibernateException {
    	log.info("closeSession is run") ;
    	
        Session session = (Session) threadLocal.get();
        threadLocal.set(null);
        if (session != null) {
        	log.info("SessionFactory.closeSession() session is not null") ;
        	if(!session.isOpen()){
        		System.out.println("  session     ") ;
        	}
            session.close();
        }
    }


	public static org.hibernate.SessionFactory getSessionFactory() {
		return sessionFactory;
	}


	public static void setConfigFile(String configFile) {
		SessionFactory.configFile = configFile;
		sessionFactory = null;
	}


	public static Configuration getConfiguration() {
		return configuration;
	}
	


}

HibernateSessioniFactoryは主にsessionの開閉を担当しています.
 
2.HibernateSessionFilter(作成するフィルタ、主にsessionのクローズ処理)
import java.io.IOException;


import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.ad.session.HibernateSessionFactory;

public class HibernateSessionFilter implements Filter {  
    private static final Log log = LogFactory.getLog(HibernateSessionFilter.class);  
    
   
      @Override
	public void init(FilterConfig filterConfig) throws ServletException {
		System.out.println("HibernateSessionFilter is end") ;
	} 
  
   @Override
    public void doFilter(ServletRequest arg0, ServletResponse arg1,  
            FilterChain chain) throws IOException, ServletException {  
        log.debug("HibernateSessionFilter start");  
        
        try{  
            //request         
            chain.doFilter(arg0, arg1);     
           //response             
           
        }catch (Exception e) {  
            e.printStackTrace();             
        }   finally{          
            HibernateSessionFactory.closeSession();            
        }  
  
    }
  
     
   @Override
     public void destroy() {     
       System.out.println("HibernateSessionFilter is start") ;
     }  
  
}

このフィルタはセッションのクローズのみを処理しているので、少しもったいないようですが、文字セットの処理を加えることもできます.
Filterの動作原理(個人的には誤りがあると思いますのでご指導ください):まずフィルタクラスを確立し、Filterインタフェースを継承する必要があります.3つの方法を実現する必要があります.
Init:サーバ起動時にこのメソッドを実行し、実行中は実行しません.
doFilter:実行中に実行され、requestの前にそれらの作業を行う役割を果たします.responseの後(つまり、サーバがコンテンツをすべてViewレイヤに返信した後)
それらの仕事をしなければならない.サーバにアクセスするたびにdoFilterメソッドが実行されます
destroy:サーバ終了時に実行します.
 
3.web.xmlの構成は次のとおりです.
        <filter>
		<filter-name>hibernateSession</filter-name>
		<filter-class>
			com.c35.ad.filter.HibernateSessionFilter
		</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>hibernateSession</filter-name>
		<url-pattern>/*</url-pattern><!--             -->
	</filter-mapping>

 
  4.dao(demoでのUserDao)
 
public class UserDao  implements BaseDao {

	private static final Logger log = Logger.getLogger(UserDao.class);
    
	private  Session session  ;
   
	public UserDao(){
       log.info("UserDao construct is running") ;    
    	   session = SessionFactory.getSession() ;
    }
    

	@Override
	public boolean save(Object o) {
		log.info("UserDao save is running ");
		boolean flag = false ;	
		Transaction tran = null;	
		try {		
			tran = session.beginTransaction();
			session.save(o);
			tran.commit();
			flag = true ;
		} catch (Exception e) {
			log.error("error save user");
			flag = false ;
			if (tran != null) {
				try {
					tran.rollback();
				} catch (HibernateException e1) {
					log.error("save Transaction rollback is error "+e1.getMessage()) ;
				}
			}
			e.printStackTrace();
		}finally{
			//session.close() ;//         session    filter   
		}
		return flag ;
	}
}

***