@Target(value=TYPE) @Retention(value=RUNTIME) @Documented @Inherited @Import(value=org.springframework.data.custom.repository.config.CustomRepositoriesRegistrar.class) public @interface EnableCustomRepositories
| 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.
|
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 find the Spring Data named queries properties file.
|
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[] |
value
Alias for the
basePackages() attribute. |
public abstract String[] value
basePackages() attribute. Allows for more concise annotation declarations e.g.:
@EnableCustomRepositories("org.my.pkg") instead of
@EnableCustomRepositories(basePackages="org.my.pkg") .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 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 repositoryImplementationPostfix
PersonRepository the corresponding implementation class will be looked up scanning
for PersonRepositoryImpl.public abstract String namedQueriesLocation
META-INF/custom-named-queries.properties.public abstract Class<?> repositoryFactoryBeanClass
FactoryBean class to be used for each repository instance. Defaults to
CustomRepositoryFactoryBean.Copyright © 2017 Molindo GmbH. All Rights Reserved.