All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.aop.config.AbstractInterceptorDrivenBeanDefinitionDecorator Maven / Gradle / Ivy

There is a newer version: 5.3.34
Show newest version
/*
 * Copyright 2002-2006 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.
 */

package org.springframework.aop.config;

import java.util.List;

import org.w3c.dom.Node;

import org.springframework.aop.framework.ProxyFactoryBean;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanDefinitionHolder;
import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.ManagedList;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.beans.factory.xml.BeanDefinitionDecorator;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils;

/**
 * Base implementation for {@link org.springframework.beans.factory.xml.BeanDefinitionDecorator BeanDefinitionDecorators} wishing
 * to add an {@link org.aopalliance.intercept.MethodInterceptor interceptor} to the resulting
 * bean.
 *
 * 

This base class controls the creation of the {@link ProxyFactoryBean} bean definition * and wraps the original as an inner-bean definition for the target property of * {@link ProxyFactoryBean}. * *

Chaining is correctly handled, ensuring that only one {@link ProxyFactoryBean} definition * is created. If a previous {@link org.springframework.beans.factory.xml.BeanDefinitionDecorator} already created the {@link org.springframework.aop.framework.ProxyFactoryBean} * then the interceptor is simply added to the existing definition. * *

Subclasses have only to create the BeanDefinition to the interceptor they * wish to add. * * @author Rob Harrop * @since 2.0 * @see org.aopalliance.intercept.MethodInterceptor */ public abstract class AbstractInterceptorDrivenBeanDefinitionDecorator implements BeanDefinitionDecorator { public final BeanDefinitionHolder decorate(Node node, BeanDefinitionHolder definitionHolder, ParserContext parserContext) { BeanDefinitionRegistry registry = parserContext.getRegistry(); // get the root bean name - will be the name of the generated proxy factory bean String existingBeanName = definitionHolder.getBeanName(); BeanDefinition existingDefinition = definitionHolder.getBeanDefinition(); // delegate to subclass for interceptor def BeanDefinition interceptorDefinition = createInterceptorDefinition(node); // generate name and register the interceptor String interceptorName = existingBeanName + "." + getInterceptorNameSuffix(interceptorDefinition); BeanDefinitionReaderUtils.registerBeanDefinition(new BeanDefinitionHolder(interceptorDefinition, interceptorName), registry); BeanDefinitionHolder result = definitionHolder; if (!isProxyFactoryBeanDefinition(existingDefinition)) { // create the proxy definitionHolder RootBeanDefinition proxyDefinition = new RootBeanDefinition(); // create proxy factory bean definitionHolder proxyDefinition.setBeanClass(ProxyFactoryBean.class); // set up property values MutablePropertyValues mpvs = new MutablePropertyValues(); proxyDefinition.setPropertyValues(mpvs); // set the target mpvs.addPropertyValue("target", existingDefinition); // create the interceptor names list ManagedList interceptorList = new ManagedList(); mpvs.addPropertyValue("interceptorNames", interceptorList); result = new BeanDefinitionHolder(proxyDefinition, existingBeanName); } addInterceptorNameToList(interceptorName, result.getBeanDefinition()); return result; } private void addInterceptorNameToList(String interceptorName, BeanDefinition beanDefinition) { List list = (List) beanDefinition.getPropertyValues().getPropertyValue("interceptorNames").getValue(); list.add(interceptorName); } private boolean isProxyFactoryBeanDefinition(BeanDefinition existingDefinition) { return existingDefinition.getBeanClassName().equals(ProxyFactoryBean.class.getName()); } protected String getInterceptorNameSuffix(BeanDefinition interceptorDefinition) { return StringUtils.uncapitalize(ClassUtils.getShortName(interceptorDefinition.getBeanClassName())); } /** * Subclasses should implement this method to return the BeanDefinition * for the interceptor they wish to apply to the bean being decorated. */ protected abstract BeanDefinition createInterceptorDefinition(Node node); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy