Class ClassPathScanningCandidateComponentProvider
- All Implemented Interfaces:
Aware
,ResourceLoaderAware
,EnvironmentCapable
- Direct Known Subclasses:
ClassPathBeanDefinitionScanner
Candidate components are identified by applying exclude and include filters.
AnnotationTypeFilter
and AssignableTypeFilter
include filters
for an annotation/target-type that is annotated with Indexed
are
supported: if any other include filter is specified, the index is ignored and
classpath scanning is used instead.
This implementation is based on Spring's
MetadataReader
facility, backed by an ASM ClassReader
.
- Since:
- 2.5
- Author:
- Mark Fisher, Juergen Hoeller, Ramnivas Laddad, Chris Beams, Stephane Nicoll, Sam Brannen
- See Also:
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
Protected constructor for flexible subclass initialization.ClassPathScanningCandidateComponentProvider
(boolean useDefaultFilters) Create a ClassPathScanningCandidateComponentProvider with aStandardEnvironment
.ClassPathScanningCandidateComponentProvider
(boolean useDefaultFilters, Environment environment) Create a ClassPathScanningCandidateComponentProvider with the givenEnvironment
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addExcludeFilter
(TypeFilter excludeFilter) Add an exclude type filter to the front of the exclusion list.void
addIncludeFilter
(TypeFilter includeFilter) Add an include type filter to the end of the inclusion list.void
Clear the local metadata cache, if any, removing all cached class metadata.findCandidateComponents
(String basePackage) Scan the component index or class path for candidate components.final Environment
Return theEnvironment
associated with this component.final MetadataReaderFactory
Return the MetadataReaderFactory used by this component provider.protected BeanDefinitionRegistry
Return theBeanDefinitionRegistry
used by this scanner, if any.final ResourceLoader
Return the ResourceLoader that this component provider uses.protected boolean
isCandidateComponent
(AnnotatedBeanDefinition beanDefinition) Determine whether the given bean definition qualifies as candidate.protected boolean
isCandidateComponent
(MetadataReader metadataReader) Determine whether the given class does not match any exclude filter and does match at least one include filter.protected void
Register the default filter for@Component
.void
resetFilters
(boolean useDefaultFilters) Reset the configured type filters.protected String
resolveBasePackage
(String basePackage) Resolve the specified base package into a pattern specification for the package search path.void
setEnvironment
(Environment environment) Set the Environment to use when resolving placeholders and evaluating@Conditional
-annotated component classes.void
setMetadataReaderFactory
(MetadataReaderFactory metadataReaderFactory) Set theMetadataReaderFactory
to use.void
setResourceLoader
(ResourceLoader resourceLoader) Set theResourceLoader
to use for resource locations.void
setResourcePattern
(String resourcePattern) Set the resource pattern to use when scanning the classpath.
-
Field Details
-
logger
-
-
Constructor Details
-
ClassPathScanningCandidateComponentProvider
protected ClassPathScanningCandidateComponentProvider()Protected constructor for flexible subclass initialization.- Since:
- 4.3.6
-
ClassPathScanningCandidateComponentProvider
public ClassPathScanningCandidateComponentProvider(boolean useDefaultFilters) Create a ClassPathScanningCandidateComponentProvider with aStandardEnvironment
.- Parameters:
useDefaultFilters
- whether to register the default filters for the@Component
,@Repository
,@Service
, and@Controller
stereotype annotations- See Also:
-
ClassPathScanningCandidateComponentProvider
public ClassPathScanningCandidateComponentProvider(boolean useDefaultFilters, Environment environment) Create a ClassPathScanningCandidateComponentProvider with the givenEnvironment
.- Parameters:
useDefaultFilters
- whether to register the default filters for the@Component
,@Repository
,@Service
, and@Controller
stereotype annotationsenvironment
- the Environment to use- See Also:
-
-
Method Details
-
setResourcePattern
Set the resource pattern to use when scanning the classpath. This value will be appended to each base package name.- See Also:
-
findCandidateComponents(String)
DEFAULT_RESOURCE_PATTERN
-
addIncludeFilter
Add an include type filter to the end of the inclusion list. -
addExcludeFilter
Add an exclude type filter to the front of the exclusion list. -
resetFilters
public void resetFilters(boolean useDefaultFilters) Reset the configured type filters.- Parameters:
useDefaultFilters
- whether to re-register the default filters for the@Component
,@Repository
,@Service
, and@Controller
stereotype annotations- See Also:
-
registerDefaultFilters
protected void registerDefaultFilters()Register the default filter for@Component
.This will implicitly register all annotations that have the
@Component
meta-annotation including the@Repository
,@Service
, and@Controller
stereotype annotations.Also supports Jakarta EE's
ManagedBean
and JSR-330'sNamed
annotations (as well as their pre-Jakartajavax.annotation.ManagedBean
andjavax.inject.Named
equivalents), if available. -
setEnvironment
Set the Environment to use when resolving placeholders and evaluating@Conditional
-annotated component classes.The default is a
StandardEnvironment
.- Parameters:
environment
- the Environment to use
-
getEnvironment
Description copied from interface:EnvironmentCapable
Return theEnvironment
associated with this component.- Specified by:
getEnvironment
in interfaceEnvironmentCapable
-
getRegistry
Return theBeanDefinitionRegistry
used by this scanner, if any. -
setResourceLoader
Set theResourceLoader
to use for resource locations. This will typically be aResourcePatternResolver
implementation.Default is a
PathMatchingResourcePatternResolver
, also capable of resource pattern resolving through theResourcePatternResolver
interface.- Specified by:
setResourceLoader
in interfaceResourceLoaderAware
- Parameters:
resourceLoader
- the ResourceLoader object to be used by this object- See Also:
-
getResourceLoader
Return the ResourceLoader that this component provider uses. -
setMetadataReaderFactory
Set theMetadataReaderFactory
to use.Default is a
CachingMetadataReaderFactory
for the specified resource loader.Call this setter method after
setResourceLoader(org.springframework.core.io.ResourceLoader)
in order for the given MetadataReaderFactory to override the default factory. -
getMetadataReaderFactory
Return the MetadataReaderFactory used by this component provider. -
findCandidateComponents
Scan the component index or class path for candidate components.- Parameters:
basePackage
- the package to check for annotated classes- Returns:
- a corresponding Set of autodetected bean definitions
-
resolveBasePackage
Resolve the specified base package into a pattern specification for the package search path.The default implementation resolves placeholders against system properties, and converts a "."-based package path to a "/"-based resource path.
- Parameters:
basePackage
- the base package as specified by the user- Returns:
- the pattern specification to be used for package searching
-
isCandidateComponent
Determine whether the given class does not match any exclude filter and does match at least one include filter.- Parameters:
metadataReader
- the ASM ClassReader for the class- Returns:
- whether the class qualifies as a candidate component
- Throws:
IOException
-
isCandidateComponent
Determine whether the given bean definition qualifies as candidate.The default implementation checks whether the class is not an interface and not dependent on an enclosing class.
Can be overridden in subclasses.
- Parameters:
beanDefinition
- the bean definition to check- Returns:
- whether the bean definition qualifies as a candidate component
-
clearCache
public void clearCache()Clear the local metadata cache, if any, removing all cached class metadata.
-