Browse Source

Performance improvements to NamedContextFactory. (#826)

Fixes gh-825
pull/835/head
Spencer Gibb 5 years ago committed by GitHub
parent
commit
5f92501a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      spring-cloud-context/src/main/java/org/springframework/cloud/context/named/NamedContextFactory.java
  2. 36
      spring-cloud-context/src/test/java/org/springframework/cloud/context/named/NamedContextFactoryTests.java

12
spring-cloud-context/src/main/java/org/springframework/cloud/context/named/NamedContextFactory.java

@ -27,6 +27,7 @@ import java.util.concurrent.ConcurrentHashMap; @@ -27,6 +27,7 @@ import java.util.concurrent.ConcurrentHashMap;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactoryUtils;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration;
import org.springframework.context.ApplicationContext;
@ -143,10 +144,12 @@ public abstract class NamedContextFactory<C extends NamedContextFactory.Specific @@ -143,10 +144,12 @@ public abstract class NamedContextFactory<C extends NamedContextFactory.Specific
public <T> T getInstance(String name, Class<T> type) {
AnnotationConfigApplicationContext context = getContext(name);
if (BeanFactoryUtils.beanNamesForTypeIncludingAncestors(context,
type).length > 0) {
try {
return context.getBean(type);
}
catch (NoSuchBeanDefinitionException e) {
// ignore
}
return null;
}
@ -181,12 +184,9 @@ public abstract class NamedContextFactory<C extends NamedContextFactory.Specific @@ -181,12 +184,9 @@ public abstract class NamedContextFactory<C extends NamedContextFactory.Specific
public <T> Map<String, T> getInstances(String name, Class<T> type) {
AnnotationConfigApplicationContext context = getContext(name);
if (BeanFactoryUtils.beanNamesForTypeIncludingAncestors(context,
type).length > 0) {
return BeanFactoryUtils.beansOfTypeIncludingAncestors(context, type);
}
return null;
}
/**
* Specification with name and configuration.

36
spring-cloud-context/src/test/java/org/springframework/cloud/context/named/NamedContextFactoryTests.java

@ -54,6 +54,18 @@ public class NamedContextFactoryTests { @@ -54,6 +54,18 @@ public class NamedContextFactoryTests {
Bar foobar = factory.getInstance("foo", Bar.class);
then(foobar).as("bar was not null").isNull();
Baz fooBaz = factory.getInstance("foo", Baz.class);
then(fooBaz).as("fooBaz was null").isNotNull();
Object fooContainerFoo = factory.getInstance("foo", Container.class, Foo.class);
then(fooContainerFoo).as("fooContainerFoo was null").isNotNull();
Object fooContainerBar = factory.getInstance("foo", Container.class, Bar.class);
then(fooContainerBar).as("fooContainerBar was not null").isNull();
Object barContainerBar = factory.getInstance("bar", Container.class, Bar.class);
then(barContainerBar).as("barContainerBar was null").isNotNull();
Map<String, Baz> fooBazes = factory.getInstances("foo", Baz.class);
then(fooBazes).as("fooBazes was null").isNotNull();
then(fooBazes.size()).as("fooBazes size was wrong").isEqualTo(1);
@ -146,6 +158,11 @@ public class NamedContextFactoryTests { @@ -146,6 +158,11 @@ public class NamedContextFactoryTests {
return new Foo();
}
@Bean
Container<Foo> fooContainer() {
return new Container<>(new Foo());
}
}
static class Foo {
@ -164,10 +181,29 @@ public class NamedContextFactoryTests { @@ -164,10 +181,29 @@ public class NamedContextFactoryTests {
return new Baz();
}
@Bean
Container<Bar> barContainer() {
return new Container<>(new Bar());
}
}
static class Bar {
}
static class Container<T> {
private final T item;
Container(T item) {
this.item = item;
}
public T getItem() {
return this.item;
}
}
}

Loading…
Cancel
Save