Fix reference code sample

master
Oleg Lomaka 10 years ago committed by Sebastien Deleuze
parent d6be433501
commit abb45aa130
  1. 2
      src/asciidoc/index.adoc

@ -6365,7 +6365,7 @@ support for autowiring of `@Bean` methods:
@Qualifier("public") TestBean spouse, @Qualifier("public") TestBean spouse,
@Value("#{privateInstance.age}") String country) { @Value("#{privateInstance.age}") String country) {
TestBean tb = new TestBean("protectedInstance", 1); TestBean tb = new TestBean("protectedInstance", 1);
tb.setSpouse(tb); tb.setSpouse(spouse);
tb.setCountry(country); tb.setCountry(country);
return tb; return tb;
} }

Loading…
Cancel
Save