Uses of Interface
org.springframework.data.util.TypeScanner
Packages that use TypeScanner
Package
Description
Support for registering the need for reflection, resources, java serialization and proxies at runtime for Ahead of
Time compilation.
Core utility APIs such as a type information framework to resolve generic types.
-
Uses of TypeScanner in org.springframework.data.aot
Methods in org.springframework.data.aot that return TypeScannerModifier and TypeMethodDescriptiondefault TypeScannerAotContext.getTypeScanner()Returns a newTypeScannerused to scan fortypesthat will be contributed to the AOT processing infrastructure. -
Uses of TypeScanner in org.springframework.data.util
Methods in org.springframework.data.util that return TypeScannerModifier and TypeMethodDescriptiondefault TypeScannerTypeScanner.forTypesAnnotatedWith(Class<? extends Annotation>... annotations) Define annotations identifying types to include in the scan result.TypeScanner.forTypesAnnotatedWith(Collection<Class<? extends Annotation>> annotations) Define annotations identifying types to include in the scan result.TypeScanner.onClassNotFound(Consumer<ClassNotFoundException> action) Define what happens in the case of aClassNotFoundException.default TypeScannerTypeScanner.scanPackages(String... packageNames) Collects thenamesof packages to scan.TypeScanner.scanPackages(Collection<String> packageNames) Collects thenamesof packages to scan.static TypeScannerTypeScanner.typeScanner(ClassLoader classLoader) Create a newTypeScannerusing the givenClassLoader.static TypeScannerTypeScanner.typeScanner(ApplicationContext context) Create a newTypeScannerusing the givenApplicationContext.static TypeScannerTypeScanner.typeScanner(ResourceLoader resourceLoader) Create a newTypeScannerusing the givenResourceLoader.