|
Spring Framework example source code file (AbstractBeanFactoryBasedTargetSource.java)
The Spring Framework AbstractBeanFactoryBasedTargetSource.java source code
/*
* Copyright 2002-2007 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.target;
import java.io.NotSerializableException;
import java.io.ObjectStreamException;
import java.io.Serializable;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.aop.TargetSource;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.util.ClassUtils;
import org.springframework.util.ObjectUtils;
/**
* Base class for {@link org.springframework.aop.TargetSource} implementations
* that are based on a Spring {@link org.springframework.beans.factory.BeanFactory},
* delegating to Spring-managed bean instances.
*
* <p>Subclasses can create prototype instances or lazily access a
* singleton target, for example. See {@link LazyInitTargetSource} and
* {@link AbstractPrototypeBasedTargetSource}'s subclasses for concrete strategies.
*
* <p>BeanFactory-based TargetSources are serializable. This involves
* disconnecting the current target and turning into a {@link SingletonTargetSource}.
*
* @author Juergen Hoeller
* @author Rod Johnson
* @since 1.1.4
* @see org.springframework.beans.factory.BeanFactory#getBean
* @see LazyInitTargetSource
* @see PrototypeTargetSource
* @see ThreadLocalTargetSource
* @see CommonsPoolTargetSource
*/
public abstract class AbstractBeanFactoryBasedTargetSource
implements TargetSource, BeanFactoryAware, Serializable {
/** use serialVersionUID from Spring 1.2.7 for interoperability */
private static final long serialVersionUID = -4721607536018568393L;
/** Logger available to subclasses */
protected final Log logger = LogFactory.getLog(getClass());
/** Name of the target bean we will create on each invocation */
private String targetBeanName;
/** Class of the target */
private Class targetClass;
/**
* BeanFactory that owns this TargetSource. We need to hold onto this
* reference so that we can create new prototype instances as necessary.
*/
private BeanFactory beanFactory;
/**
* Set the name of the target bean in the factory.
* <p>The target bean should not be a singleton, else the same instance will
* always be obtained from the factory, resulting in the same behavior as
* provided by {@link SingletonTargetSource}.
* @param targetBeanName name of the target bean in the BeanFactory
* that owns this interceptor
* @see SingletonTargetSource
*/
public void setTargetBeanName(String targetBeanName) {
this.targetBeanName = targetBeanName;
}
/**
* Return the name of the target bean in the factory.
*/
public String getTargetBeanName() {
return this.targetBeanName;
}
/**
* Specify the target class explicitly, to avoid any kind of access to the
* target bean (for example, to avoid initialization of a FactoryBean instance).
* <p>Default is to detect the type automatically, through a
Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework AbstractBeanFactoryBasedTargetSource.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.