Package | Description |
---|---|
org.springframework.beans.factory.annotation |
Support package for annotation-driven bean configuration.
|
org.springframework.context.annotation |
Annotation support for the Application Context, including JSR-250 "common"
annotations, component-scanning, and Java-based metadata for creating
Spring-managed objects.
|
org.springframework.core.type |
Core support package for type introspection.
|
org.springframework.core.type.classreading |
Support classes for reading annotation and class-level metadata.
|
Modifier and Type | Method and Description |
---|---|
MethodMetadata |
AnnotatedBeanDefinition.getFactoryMethodMetadata()
Obtain metadata for this bean definition's factory method, if any.
|
MethodMetadata |
AnnotatedGenericBeanDefinition.getFactoryMethodMetadata() |
Constructor and Description |
---|
AnnotatedGenericBeanDefinition(AnnotationMetadata metadata,
MethodMetadata factoryMethodMetadata)
Create a new AnnotatedGenericBeanDefinition for the given annotation metadata,
based on an annotated class and a factory method on that class.
|
Modifier and Type | Method and Description |
---|---|
MethodMetadata |
ScannedGenericBeanDefinition.getFactoryMethodMetadata() |
Modifier and Type | Class and Description |
---|---|
class |
StandardMethodMetadata
MethodMetadata implementation that uses standard reflection
to introspect a given Method . |
Modifier and Type | Method and Description |
---|---|
Set<MethodMetadata> |
StandardAnnotationMetadata.getAnnotatedMethods(String annotationName) |
Set<MethodMetadata> |
AnnotationMetadata.getAnnotatedMethods(String annotationName)
Retrieve the method metadata for all methods that are annotated
(or meta-annotated) with the given annotation type.
|
Modifier and Type | Class and Description |
---|---|
class |
MethodMetadataReadingVisitor
Deprecated.
As of Spring Framework 5.2, this class and related classes in this
package have been replaced by
SimpleAnnotationMetadataReadingVisitor
and related classes for internal use within the framework. |
Modifier and Type | Field and Description |
---|---|
protected Set<MethodMetadata> |
MethodMetadataReadingVisitor.methodMetadataSet
Deprecated.
|
protected Set<MethodMetadata> |
AnnotationMetadataReadingVisitor.methodMetadataSet
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Set<MethodMetadata> |
AnnotationMetadataReadingVisitor.getAnnotatedMethods(String annotationName)
Deprecated.
|
Constructor and Description |
---|
MethodMetadataReadingVisitor(String methodName,
int access,
String declaringClassName,
String returnTypeName,
ClassLoader classLoader,
Set<MethodMetadata> methodMetadataSet)
Deprecated.
|