站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 2.1.0 API 文档英文版

org.springframework.beans.factory.annotation (Spring Framework API 2.1) - Spring Framework 2.1.0 API 文档英文版


The Spring Framework

Package org.springframework.beans.factory.annotation

Support package for annotation-driven bean configuration.

See:
          Description

Class Summary
AnnotationBeanWiringInfoResolver BeanWiringInfoResolver that uses the Configurable annotation to identify which classes need autowiring.
AnnotationConfigUtils Utility class that allows for convenient registration of common BeanPostProcessor definitions for annotation-based configuration.
AutowiredAnnotationBeanPostProcessor BeanPostProcessor implementation that autowires annotated fields, setter methods and arbitrary config methods.
CommonAnnotationBeanPostProcessor BeanPostProcessor implementation that supports common JSR-250 annotations out of the box.
InitDestroyAnnotationBeanPostProcessor BeanPostProcessor implementation that invokes annotated init and destroy methods.
RequiredAnnotationBeanPostProcessor BeanPostProcessor implementation that enforces required JavaBean properties to have been configured.
 

Enum Summary
Autowire Enumeration determining autowiring status: that is, whether a bean should have its dependencies automatically injected by the Spring container using setter injection.
 

Annotation Types Summary
Autowired Marks a constructor, field, setter method or config method as to be autowired by Spring's dependency injection facilities.
Configurable Marks a class as being eligible for Spring-driven configuration.
Required Marks a method (typically a JavaBean setter method) as being 'required': that is, the setter method must be configured to be dependency-injected with a value.
 

Package org.springframework.beans.factory.annotation Description

Support package for annotation-driven bean configuration.


The Spring Framework

Copyright © 2002-2007 The Spring Framework.