@Bean provides autowireCandidate flag (analogous to XML definitions)
Issue: SPR-16204
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -251,6 +251,14 @@ public @interface Bean {
|
||||
*/
|
||||
Autowire autowire() default Autowire.NO;
|
||||
|
||||
/**
|
||||
* Is this bean a candidate for getting autowired into some other bean?
|
||||
* <p>Default is {@code true}; set this to {@code false} for internal delegates
|
||||
* that are not meant to get in the way of beans of the same type in other places.
|
||||
* @since 5.1
|
||||
*/
|
||||
boolean autowireCandidate() default true;
|
||||
|
||||
/**
|
||||
* The optional name of a method to call on the bean instance during initialization.
|
||||
* Not commonly used, given that the method may be called programmatically directly
|
||||
|
||||
@@ -232,6 +232,11 @@ class ConfigurationClassBeanDefinitionReader {
|
||||
beanDef.setAutowireMode(autowire.value());
|
||||
}
|
||||
|
||||
boolean autowireCandidate = bean.getBoolean("autowireCandidate");
|
||||
if (!autowireCandidate) {
|
||||
beanDef.setAutowireCandidate(false);
|
||||
}
|
||||
|
||||
String initMethodName = bean.getString("initMethod");
|
||||
if (StringUtils.hasText(initMethodName)) {
|
||||
beanDef.setInitMethodName(initMethodName);
|
||||
|
||||
Reference in New Issue
Block a user