Home / Type/ ConditionalOnRepositoryType Type — spring-boot Architecture

ConditionalOnRepositoryType Type — spring-boot Architecture

Architecture documentation for the ConditionalOnRepositoryType type/interface in ConditionalOnRepositoryType.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/ConditionalOnRepositoryType.java lines 34–52

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
@Documented
@Conditional(OnRepositoryTypeCondition.class)
public @interface ConditionalOnRepositoryType {

	/**
	 * The name of the store that backs the repositories.
	 * @return the store
	 */
	String store();

	/**
	 * The required repository type.
	 * @return the required repository type
	 */
	RepositoryType type();

}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free