private boolean isBeanBundleScoped() {
boolean bundleScoped = false;
// if we do have a bundle scope, use ServiceFactory decoration
if (targetBeanName != null) {
if (beanFactory instanceof ConfigurableListableBeanFactory) {
String beanScope =
((ConfigurableListableBeanFactory) beanFactory).getMergedBeanDefinition(targetBeanName)
.getScope();
bundleScoped = OsgiBundleScope.SCOPE_NAME.equals(beanScope);
} else
// if for some reason, the passed in BeanFactory can't be
// queried for scopes and we do
// have a bean reference, apply scoped decoration.
bundleScoped = true;
}
return bundleScoped;
}
OsgiServiceFactoryBean.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:gemini.blueprint
作者:
评论列表
文章目录