当前位置: 首页>>代码示例>>Java>>正文


Java BeanFactory.isPrototype方法代码示例

本文整理汇总了Java中org.springframework.beans.factory.BeanFactory.isPrototype方法的典型用法代码示例。如果您正苦于以下问题:Java BeanFactory.isPrototype方法的具体用法?Java BeanFactory.isPrototype怎么用?Java BeanFactory.isPrototype使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.beans.factory.BeanFactory的用法示例。


在下文中一共展示了BeanFactory.isPrototype方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: PrototypeAspectInstanceFactory

import org.springframework.beans.factory.BeanFactory; //导入方法依赖的package包/类
/**
 * Create a PrototypeAspectInstanceFactory. AspectJ will be called to
 * introspect to create AJType metadata using the type returned for the
 * given bean name from the BeanFactory.
 * @param beanFactory the BeanFactory to obtain instance(s) from
 * @param name the name of the bean
 */
public PrototypeAspectInstanceFactory(BeanFactory beanFactory, String name) {
	super(beanFactory, name);
	if (!beanFactory.isPrototype(name)) {
		throw new IllegalArgumentException(
				"Cannot use PrototypeAspectInstanceFactory with bean named '" + name + "': not a prototype");
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:15,代码来源:PrototypeAspectInstanceFactory.java

示例2: setBeanFactory

import org.springframework.beans.factory.BeanFactory; //导入方法依赖的package包/类
@Override
public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
	super.setBeanFactory(beanFactory);

	// Check whether the target bean is defined as prototype.
	if (!beanFactory.isPrototype(getTargetBeanName())) {
		throw new BeanDefinitionStoreException(
				"Cannot use prototype-based TargetSource against non-prototype bean with name '" +
				getTargetBeanName() + "': instances would not be independent");
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:12,代码来源:AbstractPrototypeBasedTargetSource.java

示例3: isPrototype

import org.springframework.beans.factory.BeanFactory; //导入方法依赖的package包/类
@Override
public boolean isPrototype(String name) throws NoSuchBeanDefinitionException {
	String beanName = transformedBeanName(name);

	BeanFactory parentBeanFactory = getParentBeanFactory();
	if (parentBeanFactory != null && !containsBeanDefinition(beanName)) {
		// No bean definition found in this factory -> delegate to parent.
		return parentBeanFactory.isPrototype(originalBeanName(name));
	}

	RootBeanDefinition mbd = getMergedLocalBeanDefinition(beanName);
	if (mbd.isPrototype()) {
		// In case of FactoryBean, return singleton status of created object if not a dereference.
		return (!BeanFactoryUtils.isFactoryDereference(name) || isFactoryBean(beanName, mbd));
	}
	else {
		// Singleton or scoped - not a prototype.
		// However, FactoryBean may still produce a prototype object...
		if (BeanFactoryUtils.isFactoryDereference(name)) {
			return false;
		}
		if (isFactoryBean(beanName, mbd)) {
			final FactoryBean<?> factoryBean = (FactoryBean<?>) getBean(FACTORY_BEAN_PREFIX + beanName);
			if (System.getSecurityManager() != null) {
				return AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
					@Override
					public Boolean run() {
						return ((factoryBean instanceof SmartFactoryBean && ((SmartFactoryBean<?>) factoryBean).isPrototype()) ||
								!factoryBean.isSingleton());
					}
				}, getAccessControlContext());
			}
			else {
				return ((factoryBean instanceof SmartFactoryBean && ((SmartFactoryBean<?>) factoryBean).isPrototype()) ||
						!factoryBean.isSingleton());
			}
		}
		else {
			return false;
		}
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:43,代码来源:AbstractBeanFactory.java


注:本文中的org.springframework.beans.factory.BeanFactory.isPrototype方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。