Java tutorial
/** * * Copyright (C) 2002-2012 "SYSNET International, Inc." * support@sysnetint.com [http://www.sysnetint.com] * * This file is part of OpenEMPI. * * OpenEMPI is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.openhie.openempi.ejb; import javax.interceptor.AroundInvoke; import javax.interceptor.InvocationContext; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class SpringInjectionInterceptor { protected final Log log = LogFactory.getLog(getClass()); @AroundInvoke public Object myBeanInterceptor(InvocationContext ctx) throws Exception { log.debug("Doing the AroundInvoke for bean: " + ctx.getTarget().getClass()); BaseSpringInjectableBean bean = (BaseSpringInjectableBean) ctx.getTarget(); bean.init(); return ctx.proceed(); } }