@Target(value=TYPE) @Retention(value=RUNTIME) @Documented @Inherited @Import(value=org.springframework.data.jdbc.repository.config.JdbcRepositoriesRegistrar.class) public @interface EnableJdbcRepositories
AbstractJdbcConfiguration
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. defined as inner classes) should be discovered by the
repositories infrastructure.
|
String |
dataAccessStrategyRef
Configures the name of the
DataAccessStrategy bean definition to
be used to create repositories discovered through this annotation. |
ComponentScan.Filter[] |
excludeFilters
Specifies which types are not eligible for component scanning.
|
ComponentScan.Filter[] |
includeFilters
Specifies which types are eligible for component scanning.
|
String |
jdbcOperationsRef
Configures the name of the
NamedParameterJdbcOperations bean
definition to be used to create repositories discovered through this annotation. |
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.:
@EnableJdbcRepositories("org.my.pkg")
instead of
@EnableJdbcRepositories(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 ComponentScan.Filter[] includeFilters
basePackages()
to everything in the base packages that matches the given filter or filters.public abstract ComponentScan.Filter[] excludeFilters
public abstract boolean considerNestedRepositories
public abstract Class<?> repositoryFactoryBeanClass
FactoryBean
class to be used for each repository instance. Defaults to
JdbcRepositoryFactoryBean
.public abstract String namedQueriesLocation
META-INF/jdbc-named-queries.properties
.public abstract String repositoryImplementationPostfix
PersonRepository
the corresponding implementation class will be looked up scanning
for PersonRepositoryImpl
.public abstract String jdbcOperationsRef
NamedParameterJdbcOperations
bean
definition to be used to create repositories discovered through this annotation. Defaults to
namedParameterJdbcTemplate
.public abstract String dataAccessStrategyRef
DataAccessStrategy
bean definition to
be used to create repositories discovered through this annotation. Defaults to defaultDataAccessStrategy
.Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.