Package org.axonframework.contextsupport.spring

Source Code of org.axonframework.contextsupport.spring.SpringParameterResolverFactoryBean

/*
* Copyright (c) 2010-2014. Axon Framework
*
* 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.
*/

package org.axonframework.contextsupport.spring;

import org.axonframework.common.annotation.ClasspathParameterResolverFactory;
import org.axonframework.common.annotation.MultiParameterResolverFactory;
import org.axonframework.common.annotation.ParameterResolverFactory;
import org.axonframework.common.annotation.SpringBeanParameterResolverFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanClassLoaderAware;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

import java.util.ArrayList;
import java.util.List;

/**
* Spring factory bean that creates a ParameterResolverFactory instance that is capable of resolving parameter values
* as Spring Beans, in addition to the default behavior defined by Axon.
*
* @author Allard Buijze
* @see org.axonframework.common.annotation.SpringBeanParameterResolverFactory
* @see org.axonframework.common.annotation.ClasspathParameterResolverFactory
* @since 2.3.1
*/
public class SpringParameterResolverFactoryBean implements FactoryBean<ParameterResolverFactory>,
        BeanClassLoaderAware, InitializingBean, ApplicationContextAware {

    private final List<ParameterResolverFactory> factories = new ArrayList<ParameterResolverFactory>();
    private ClassLoader classLoader;
    private ApplicationContext applicationContext;

    @Override
    public ParameterResolverFactory getObject() throws Exception {
        return MultiParameterResolverFactory.ordered(factories);
    }

    @Override
    public Class<?> getObjectType() {
        return ParameterResolverFactory.class;
    }

    @Override
    public boolean isSingleton() {
        return true;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        factories.add(ClasspathParameterResolverFactory.forClassLoader(classLoader));
        final SpringBeanParameterResolverFactory springBeanParameterResolverFactory = new SpringBeanParameterResolverFactory();
        springBeanParameterResolverFactory.setApplicationContext(applicationContext);
        factories.add(springBeanParameterResolverFactory);
    }

    /**
     * Defines any additional parameter resovler factories that need to be use to resolve parameters. By default,
     * the ParameterResolverFactories found on the classpath, as well as a SpringBeanParameterResolverFactory are
     * registered.
     *
     * @param additionalFactories The extra factories to register
     * @see org.axonframework.common.annotation.SpringBeanParameterResolverFactory
     * @see org.axonframework.common.annotation.ClasspathParameterResolverFactory
     */
    public void setAdditionalFactories(List<ParameterResolverFactory> additionalFactories) {
        this.factories.addAll(additionalFactories);
    }

    @Override
    public void setBeanClassLoader(ClassLoader classLoader) {
        this.classLoader = classLoader;
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        this.applicationContext = applicationContext;
    }
}
TOP

Related Classes of org.axonframework.contextsupport.spring.SpringParameterResolverFactoryBean

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.