|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Target(value=METHOD) @Retention(value=RUNTIME) public @interface Bean
Annotation to be applied to methods that create beans in a Spring context. The name of the bean is the method name. (It is also possible to specify aliases using the aliases array on this annotation.)
Contains similar information to that held in Spring's internal BeanDefinition metadata.
Bean creation methods must be non-private (default, public or protected).
Bean creation methods may throw any exception, which will be caught and
handled by the Spring container on processing of the configuration class.
Bean creation methods must return an object type. The decision to return a
class or an interface will be significant in the event of proxying. Bean
methods that return interfaces will be proxied using dynamic proxies; those
that return a class will require CGLIB or other subclass-based proxying. It
is recommended to return an interface where possible, as this is also
consistent with best practice around loose coupling.
Bean creation methods may reference other bean creation methods by calling them directly, as follows. This ensures that references between beans are strongly typed:
@Bean public Company springSource() { Company company = new DefaultCompany("SpringSource"); company.setChiefTechnologyOfficer(adrian()); return company; } @Bean public Person adrian() { return new Person("Adrian Colyer"); }If a bean creation method is protected, rather than public, the the bean will be hidden. This means that the bean will be added to a child factory used internally by the ConfigurationProcessor, rather than the main factory, meaning it won't be visible to other definitions. This is particularly useful for Spring AOP Advisors or AspectJ aspects, which might otherwise alter behaviour of the owning factory as a whole.
Configuration
Optional Element Summary | |
---|---|
String[] |
aliases
Bean aliases. |
boolean |
allowOverriding
Allow the bean to be overridden in another JavaConfig, XML or other non-Java configuration. |
Autowire |
autowire
Bean autowire strategy. |
DependencyCheck |
dependencyCheck
Bean dependency check strategy. |
String[] |
dependsOn
Beans on which the current bean depends on. |
String |
destroyMethodName
Bean destroy method name. |
String |
initMethodName
Bean init method name. |
Lazy |
lazy
Bean lazy strategy. |
Meta[] |
meta
Metadata for the current bean. |
Primary |
primary
A bean may be marked as primary, useful for disambiguation when looking up beans by type. |
String |
scope
Scope: whether the bean is a singleton, prototype or custom scope. |
public abstract String[] aliases
public abstract String scope
public abstract Autowire autowire
public abstract Lazy lazy
public abstract Primary primary
JavaConfigApplicationContext.getBean(Class);
public abstract String initMethodName
public abstract String destroyMethodName
public abstract DependencyCheck dependencyCheck
public abstract String[] dependsOn
public abstract Meta[] meta
public abstract boolean allowOverriding
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |