This page describes the @Autowired annotation, which denotes which object fields need injecting into dependent beans. It takes two optional parameters:
The "Simple autowiring" section describes using @Autowired without any parameters.
The "Phased autowiring" section describes using @Autowired with the phase
parameter.
The "BeanContext: add(name, bean) method" section describes using @Autowired with the qualifier
parameter.
The phase
parameter is discussed in more detail on the Ready Processing page.
|
Bean Wiring
The process of "wiring" beans together means that beans that depend on other beans have those references automatically injected. All beans added to the BeanContext can be automatically wired with their dependent objects.
|