
org.jboss.spring.deployers.AbstractSpringMetaDataDeployer Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.spring.deployers;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import org.jboss.deployers.spi.DeploymentException;
import org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployerWithInput;
import org.jboss.deployers.spi.deployer.helpers.DeploymentVisitor;
import org.jboss.deployers.structure.spi.DeploymentUnit;
import org.jboss.spring.factory.Nameable;
import org.jboss.util.naming.NonSerializableFactory;
import org.jboss.util.naming.Util;
import org.springframework.beans.factory.BeanFactory;
import java.util.ArrayList;
import java.util.List;
/**
* Deploys SpringMetaData.
*
* @param exact bean factory type
* @author Ales Justin
* @see ApplicationContextDeployer
* @see BeanFactoryDeployer
*/
public abstract class AbstractSpringMetaDataDeployer extends AbstractRealDeployerWithInput {
protected AbstractSpringMetaDataDeployer() {
setDeploymentVisitor(createDeploymentVisitor());
}
/**
* Create deployment visitor.
*
* @return the deployment visitor
*/
protected abstract DeploymentVisitor createDeploymentVisitor();
protected abstract class SpringDeploymentVisitor implements DeploymentVisitor {
private final String SUCCESSFUL_BINDINGS_KEY = AbstractSpringMetaDataDeployer.class.getName() + "_SUCCESSFUL_BINDINGS";
public Class getVisitorType() {
return SpringMetaData.class;
}
public void deploy(DeploymentUnit unit, SpringMetaData springMetaData) throws DeploymentException {
ClassLoader classLoader = unit.getClassLoader();
ClassLoader old = Thread.currentThread().getContextClassLoader();
List successfulBindings = new ArrayList();
try {
for (SpringContextDescriptor springContextDescriptor : springMetaData.getSpringContextDescriptors()) {
Thread.currentThread().setContextClassLoader(classLoader);
T beanFactory = doCreate(springContextDescriptor);
String name = ((Nameable) beanFactory).getName();
springContextDescriptor.setName(name);
bindIfPossible(beanFactory, name);
successfulBindings.add(name);
if (log.isTraceEnabled()) {
log.trace("Bean factory [" + name + "] bound to local JNDI.");
}
}
}
catch (DeploymentException e) {
// remove our bindings if deployment unsuccessful
for (String successfulBinding : successfulBindings) {
unbind(successfulBinding);
}
successfulBindings.clear();
throw e;
} finally {
Thread.currentThread().setContextClassLoader(old);
unit.addAttachment(SUCCESSFUL_BINDINGS_KEY, successfulBindings);
}
}
/**
* Do create BeanFactory instance.
*
* @param metaData the spring meta data
* @return new bean factory instance
*/
protected abstract T doCreate(SpringContextDescriptor metaData);
public void undeploy(DeploymentUnit unit, SpringMetaData springMetaData) {
List ownBindings = unit.getAttachment(SUCCESSFUL_BINDINGS_KEY, List.class);
for (SpringContextDescriptor springContextDescriptor : springMetaData.getSpringContextDescriptors()) {
String name = springContextDescriptor.getName();
try {
if (ownBindings.contains(name)) {
T beanFactory = lookup(name);
if (beanFactory != null) {
doClose(beanFactory);
unbind(name);
if (log.isTraceEnabled()) {
log.trace("Bean factory [" + name + "] unbinded from local JNDI.");
}
}
}
} catch (Exception e) {
if (log.isTraceEnabled()) {
log.trace("Exception finding BeanFactory instance named " + name, e);
}
}
}
}
/**
* Do close bean factory.
*
* @param beanFactory the bean factory to close
*/
protected abstract void doClose(T beanFactory);
}
/**
* Bind factory to non-serializable JNDI context.
*
* @param beanFactory the bean factory
* @param name the jndi name
* @throws DeploymentException for any error
*/
protected void bindIfPossible(T beanFactory, String name) throws DeploymentException {
InitialContext ctx = null;
try {
ctx = new InitialContext();
Object existingObject = NonSerializableFactory.lookup(name);
if (existingObject != null) {
throw new DeploymentException("Unable to bind BeanFactory into JNDI as " + name + " : binding already"
+ " exists");
}
NonSerializableFactory.rebind(ctx, name, beanFactory);
} catch (NamingException e) {
throw new DeploymentException("Unable to bind BeanFactory into JNDI", e);
} finally {
if (ctx != null) {
try {
ctx.close();
} catch (Throwable ignored) {
}
}
}
}
/**
* Unind factory from non-serializable JNDI context.
*
* @param name the jndi name
*/
protected void unbind(String name) {
InitialContext ctx = null;
try {
ctx = new InitialContext();
ctx.unbind(name);
NonSerializableFactory.unbind(name);
} catch (NamingException e) {
log.warn("Unable to unbind BeanFactory from JNDI", e);
} finally {
if (ctx != null) {
try {
ctx.close();
} catch (Throwable ignored) {
}
}
}
}
/**
* Do a jndi lookup for bean factory.
*
* @param name the jndi name
* @return bean factory instance
* @throws Exception for any exception
*/
protected T lookup(String name) throws Exception {
Class beanFactoryClass = getExactBeanFactoryClass();
T beanFactory = beanFactoryClass.cast(Util.lookup(name, beanFactoryClass));
if (log.isTraceEnabled()) {
log.trace("Found Spring bean factory [" + name + "]: " + beanFactory);
}
return beanFactory;
}
/**
* Exact bean factory class.
*
* @return the bean factory class
*/
protected abstract Class getExactBeanFactoryClass();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy