Home / Type/ ConditionalOnProperties Type — spring-boot Architecture

ConditionalOnProperties Type — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionalOnProperties.java lines 35–48

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

	/**
	 * Return the contained {@link ConditionalOnProperty @ConditionalOnProperty}
	 * annotations.
	 * @return the contained annotations
	 */
	ConditionalOnProperty[] value();

}

Analyze Your Own Codebase

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

Try Supermodel Free