Added support for exclusions to AbstractTypeAwareSupport.

AbstractTypeAwareSupport now takes an array of type to be excluded from the bean lookup. The BeansOfTypeTaregtSource's actual bean lookup was changed to not trigger bean creation of types to be excluded.
This commit is contained in:
Oliver Gierke
2012-10-29 14:51:26 +01:00
parent ed7014cd31
commit 30e2b2c2fe
2 changed files with 37 additions and 10 deletions

View File

@@ -59,6 +59,7 @@ public class EnablePluginRegistriesIntegrationTest {
assertThat(registry, is(notNullValue()));
}
@Qualifier("myQualifier")
interface AnotherPlugin extends Plugin<String> {
}