Closes gh-967
This commit is contained in:
Stephane Nicoll 2016-07-01 11:15:32 +02:00
parent 49d78b4835
commit 716273df47
1 changed files with 2 additions and 2 deletions

View File

@ -3438,7 +3438,7 @@ a reference to the name defined in its associated object definition.
---- ----
public interface BeanNameAware { public interface BeanNameAware {
void setBeanName(string name) throws BeansException; void setBeanName(String name) throws BeansException;
} }
---- ----
@ -4443,7 +4443,7 @@ automatically resolved, with no special setup necessary.
[NOTE] [NOTE]
==== ====
`@Autowired`, `@Inject`, `@Resource`, and `@Value` annotations are handled by a Spring `@Autowired`, `@Inject`, `@Resource`, and `@Value` annotations are handled by Spring
`BeanPostProcessor` implementations which in turn means that you __cannot__ apply these `BeanPostProcessor` implementations which in turn means that you __cannot__ apply these
annotations within your own `BeanPostProcessor` or `BeanFactoryPostProcessor` types (if annotations within your own `BeanPostProcessor` or `BeanFactoryPostProcessor` types (if
any). These types must be 'wired up' explicitly via XML or using a Spring `@Bean` method. any). These types must be 'wired up' explicitly via XML or using a Spring `@Bean` method.