Test injection point match for narrow target return type

Issue: SPR-14960
This commit is contained in:
Juergen Hoeller 2016-11-30 23:47:32 +01:00
parent 1ae17c27df
commit 845dbf040d
1 changed files with 33 additions and 1 deletions

View File

@ -609,6 +609,12 @@ public class ConfigurationClassPostProcessorTests {
ctx.getBean("aFoo");
}
@Test
public void testInjectionPointMatchForNarrowTargetReturnType() {
ApplicationContext ctx = new AnnotationConfigApplicationContext(FooBarConfiguration.class);
assertSame(ctx.getBean(BarImpl.class), ctx.getBean(FooImpl.class).bar);
}
// -------------------------------------------------------------------------
@ -1115,7 +1121,7 @@ public class ConfigurationClassPostProcessorTests {
@Configuration
public static class A {
@Autowired(required=true)
@Autowired(required = true)
Z z;
@Bean
@ -1221,4 +1227,30 @@ public class ConfigurationClassPostProcessorTests {
abstract DependingFoo createFoo(BarArgument bar);
}
interface BarInterface {
}
static class BarImpl implements BarInterface {
}
static class FooImpl {
@Autowired
public BarImpl bar;
}
@Configuration
static class FooBarConfiguration {
@Bean @DependsOn("bar")
public FooImpl foo() {
return new FooImpl();
}
@Bean
public BarInterface bar() {
return new BarImpl();
}
}
}