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


Java ObjectUtils.containsElement方法代码示例

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


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

示例1: isQualifierMatch

import org.springframework.util.ObjectUtils; //导入方法依赖的package包/类
/**
 * Check whether the named bean declares a qualifier of the given name.
 * @param qualifier the qualifier to match
 * @param beanName the name of the candidate bean
 * @param bf the {@code BeanFactory} from which to retrieve the named bean
 * @return {@code true} if either the bean definition (in the XML case)
 * or the bean's factory method (in the {@code @Bean} case) defines a matching
 * qualifier value (through {@code <qualifier>} or {@code @Qualifier})
 */
private static boolean isQualifierMatch(String qualifier, String beanName, ConfigurableListableBeanFactory bf) {
	if (bf.containsBean(beanName)) {
		try {
			BeanDefinition bd = bf.getMergedBeanDefinition(beanName);
			if (bd instanceof AbstractBeanDefinition) {
				AbstractBeanDefinition abd = (AbstractBeanDefinition) bd;
				AutowireCandidateQualifier candidate = abd.getQualifier(Qualifier.class.getName());
				if ((candidate != null && qualifier.equals(candidate.getAttribute(AutowireCandidateQualifier.VALUE_KEY))) ||
						qualifier.equals(beanName) || ObjectUtils.containsElement(bf.getAliases(beanName), qualifier)) {
					return true;
				}
			}
			if (bd instanceof RootBeanDefinition) {
				Method factoryMethod = ((RootBeanDefinition) bd).getResolvedFactoryMethod();
				if (factoryMethod != null) {
					Qualifier targetAnnotation = factoryMethod.getAnnotation(Qualifier.class);
					if (targetAnnotation != null && qualifier.equals(targetAnnotation.value())) {
						return true;
					}
				}
			}
		}
		catch (NoSuchBeanDefinitionException ex) {
			// Ignore - can't compare qualifiers for a manually registered singleton object
		}
	}
	return false;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:38,代码来源:BeanFactoryAnnotationUtils.java

示例2: matchesBeanName

import org.springframework.util.ObjectUtils; //导入方法依赖的package包/类
/**
 * Determine whether the given candidate name matches the bean name or the aliases
 * stored in this bean definition.
 */
protected boolean matchesBeanName(String beanName, String candidateName) {
	return (candidateName != null &&
			(candidateName.equals(beanName) || ObjectUtils.containsElement(getAliases(beanName), candidateName)));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:9,代码来源:DefaultListableBeanFactory.java

示例3: matchesName

import org.springframework.util.ObjectUtils; //导入方法依赖的package包/类
/**
 * Determine whether the given candidate name matches the bean name
 * or the aliases stored in this bean definition.
 */
public boolean matchesName(String candidateName) {
	return (candidateName != null && (candidateName.equals(this.beanName) ||
			candidateName.equals(BeanFactoryUtils.transformedBeanName(this.beanName)) ||
			ObjectUtils.containsElement(this.aliases, candidateName)));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:10,代码来源:BeanDefinitionHolder.java

示例4: isConfigurationCallbackInterface

import org.springframework.util.ObjectUtils; //导入方法依赖的package包/类
/**
 * Determine whether the given interface is just a container callback and
 * therefore not to be considered as a reasonable proxy interface.
 * <p>If no reasonable proxy interface is found for a given bean, it will get
 * proxied with its full target class, assuming that as the user's intention.
 * @param ifc the interface to check
 * @return whether the given interface is just a container callback
 */
protected boolean isConfigurationCallbackInterface(Class<?> ifc) {
	return (ifc.equals(InitializingBean.class) || ifc.equals(DisposableBean.class) ||
			ObjectUtils.containsElement(ifc.getInterfaces(), Aware.class));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:13,代码来源:AbstractAutoProxyCreator.java


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