@Target(value=TYPE) @Retention(value=RUNTIME) @Inherited @Documented @Import(value=SpannerRepositoriesRegistrar.class) public @interface EnableSpannerRepositories
Modifier and Type | Optional Element and Description |
---|---|
Class[] |
basePackageClasses
Type-safe alternative to
basePackages() for specifying the packages to
scan for annotated components. |
String[] |
basePackages
Base packages to scan for annotated components.
|
boolean |
considerNestedRepositories
Configures whether nested repository-interfaces (e.g.
|
org.springframework.context.annotation.ComponentScan.Filter[] |
excludeFilters
Specifies which types are not eligible for component scanning.
|
org.springframework.context.annotation.ComponentScan.Filter[] |
includeFilters
Specifies which types are eligible for component scanning.
|
String |
namedQueriesLocation
Configures the location of where to read the Spring Data named queries properties
file.
|
Class |
repositoryBaseClass
Configure the repository base class to be used to create repository proxies for
this particular configuration.
|
Class |
repositoryFactoryBeanClass
Returns the
FactoryBean class to be used
for each repository instance. |
String |
repositoryImplementationPostfix
Returns the postfix to be used when looking up custom repository implementations.
|
String |
spannerMappingContextRef
Configures the name of the
SpannerMappingContext
bean to be used by default with the repositories detected. |
String |
spannerTemplateRef
Configures the name of the
SpannerOperations bean to be used by
default with the repositories detected. |
String[] |
value
Alias for the
basePackages() attribute. |
public abstract String[] value
basePackages()
attribute. Allows for more concise annotation
declarations e.g.: @EnableSpannerRepositories("org.my.pkg")
instead of
@EnableSpannerRepositories(basePackages="org.my.pkg")
.public abstract org.springframework.context.annotation.ComponentScan.Filter[] includeFilters
basePackages()
to everything in
the base packages that matches the given filter or filters.public abstract org.springframework.context.annotation.ComponentScan.Filter[] excludeFilters
public abstract String[] basePackages
value()
is an alias for
(and mutually exclusive with) this attribute. Use basePackageClasses()
for
a type-safe alternative to String-based package names.public abstract Class[] basePackageClasses
basePackages()
for specifying the packages to
scan for annotated components. The package of each class specified will be scanned.
Consider creating a special no-op marker class or interface in each package that
serves no purpose other than being referenced by this attribute.public abstract Class repositoryBaseClass
public abstract boolean considerNestedRepositories
public abstract Class repositoryFactoryBeanClass
FactoryBean
class to be used
for each repository instance. Defaults to SpannerRepositoryFactoryBean
.public abstract String namedQueriesLocation
META-INF/spanner-named-queries.properties
public abstract String repositoryImplementationPostfix
PersonRepository
the
corresponding implementation class will be looked up scanning for
PersonRepositoryImpl
.public abstract String spannerTemplateRef
SpannerOperations
bean to be used by
default with the repositories detected.public abstract String spannerMappingContextRef
SpannerMappingContext
bean to be used by default with the repositories detected.Copyright © 2021. All rights reserved.