@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
@Documented
@Conditional(value=org.springframework.boot.autoconfigure.data.OnRepositoryTypeCondition.class)
public @interface ConditionalOnRepositoryType
@Conditional that only matches when a particular type of Spring
Data repository has been enabled.| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
store
The name of the store that backs the repositories.
|
RepositoryType |
type
The required repository type.
|
public abstract java.lang.String store
public abstract RepositoryType type