package org.jdal.hibernate.aop; /* * Copyright 2008-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.aspectj.lang.JoinPoint; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.jdal.dao.hibernate.HibernateDao; /** * Spring AOP Aspect to apply session processors to current hibernate session. * * @author Jose Luis Martin - (jlm@joseluismartin.info) */ public class SessionAspect { private static final Log log = LogFactory.getLog(SessionAspect.class); private List<SessionProcessor> sessionProcessors; private SessionFactory sessionFactory; /** * Before advice to prepare Session before call */ public void processSession(JoinPoint jp) { if (log.isDebugEnabled()) { String entityClassName = ""; Object target = jp.getTarget(); if (target instanceof HibernateDao) { entityClassName = ((HibernateDao<?, ?>) target).getEntityClass().getSimpleName(); } log.debug("Advising: " + jp.toShortString() + " of class: " + jp.getTarget().getClass().getSimpleName() +"<" + entityClassName + ">" ); } try { Session session = sessionFactory.getCurrentSession(); for (SessionProcessor sp : sessionProcessors) sp.processSession(session); } catch (HibernateException he) { log.error(he); } } /** * @return the sessionProcessors */ public List<SessionProcessor> getSessionProcessors() { return sessionProcessors; } /** * @param sessionProcessors the sessionProcessors to set */ public void setSessionProcessors(List<SessionProcessor> sessionProcessors) { this.sessionProcessors = sessionProcessors; } /** * @return the sessionFactory */ public SessionFactory getSessionFactory() { return sessionFactory; } /** * @param sessionFactory the sessionFactory to set */ public void setSessionFactory(SessionFactory sessionFactory) { this.sessionFactory = sessionFactory; } }