repeatablePropertiesConditionReportWhenMatched() — spring-boot Function Reference
Architecture documentation for the repeatablePropertiesConditionReportWhenMatched() function in ConditionalOnPropertyTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 2d3bbd16_7c98_963e_9f68_3147b3c748a1["repeatablePropertiesConditionReportWhenMatched()"] 60f23964_a964_410e_add0_9e7ca52f38f9["load()"] 2d3bbd16_7c98_963e_9f68_3147b3c748a1 -->|calls| 60f23964_a964_410e_add0_9e7ca52f38f9 f5969709_b142_bf98_d2eb_491589955528["containsBean()"] 2d3bbd16_7c98_963e_9f68_3147b3c748a1 -->|calls| f5969709_b142_bf98_d2eb_491589955528 08a72f1f_4603_9a5a_6249_04a49d8a2c60["getConditionEvaluationReport()"] 2d3bbd16_7c98_963e_9f68_3147b3c748a1 -->|calls| 08a72f1f_4603_9a5a_6249_04a49d8a2c60 style 2d3bbd16_7c98_963e_9f68_3147b3c748a1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/condition/ConditionalOnPropertyTests.java lines 296–303
@Test
void repeatablePropertiesConditionReportWhenMatched() {
load(RepeatablePropertiesRequiredConfiguration.class, "property1=value1", "property2=value2");
assertThat(containsBean()).isTrue();
String report = getConditionEvaluationReport();
assertThat(report).contains("@ConditionalOnProperty (property1) matched");
assertThat(report).contains("@ConditionalOnProperty (property2) matched");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does repeatablePropertiesConditionReportWhenMatched() do?
repeatablePropertiesConditionReportWhenMatched() is a function in the spring-boot codebase.
What does repeatablePropertiesConditionReportWhenMatched() call?
repeatablePropertiesConditionReportWhenMatched() calls 3 function(s): containsBean, getConditionEvaluationReport, load.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free