propertyNameAndOriginOf() — spring-boot Function Reference
Architecture documentation for the propertyNameAndOriginOf() function in ConfigDataEnvironmentContributorPlaceholdersResolverTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 9cb81299_adea_3243_aa47_b0b47be8b27a["propertyNameAndOriginOf()"] 4a155ee7_ecba_f776_c12e_f5dee75d0a09["resolvePlaceholdersWhenFoundInInactiveThrowsException()"] 4a155ee7_ecba_f776_c12e_f5dee75d0a09 -->|calls| 9cb81299_adea_3243_aa47_b0b47be8b27a 54976f45_4015_acf5_aca3_ab919c007891["getPropertyName()"] 9cb81299_adea_3243_aa47_b0b47be8b27a -->|calls| 54976f45_4015_acf5_aca3_ab919c007891 1ab233ad_d4dc_f011_7b36_68e89f803b50["getOrigin()"] 9cb81299_adea_3243_aa47_b0b47be8b27a -->|calls| 1ab233ad_d4dc_f011_7b36_68e89f803b50 cc614270_b470_6717_089a_a04cdb5781d0["getPropertySource()"] 9cb81299_adea_3243_aa47_b0b47be8b27a -->|calls| cc614270_b470_6717_089a_a04cdb5781d0 style 9cb81299_adea_3243_aa47_b0b47be8b27a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributorPlaceholdersResolverTests.java lines 121–128
private Consumer<InactiveConfigDataAccessException> propertyNameAndOriginOf(String propertyName, String origin) {
return (ex) -> {
assertThat(ex.getPropertyName()).isEqualTo(propertyName);
PropertySourceOrigin actualOrigin = (PropertySourceOrigin) (ex.getOrigin());
assertThat(actualOrigin).isNotNull();
assertThat(actualOrigin.getPropertySource().getName()).isEqualTo(origin);
};
}
Domain
Subdomains
Source
Frequently Asked Questions
What does propertyNameAndOriginOf() do?
propertyNameAndOriginOf() is a function in the spring-boot codebase.
What does propertyNameAndOriginOf() call?
propertyNameAndOriginOf() calls 3 function(s): getOrigin, getPropertyName, getPropertySource.
What calls propertyNameAndOriginOf()?
propertyNameAndOriginOf() is called by 1 function(s): resolvePlaceholdersWhenFoundInInactiveThrowsException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free