bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() — spring-boot Function Reference
Architecture documentation for the bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() function in ValueObjectBinderTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 290bba56_1551_d804_c216_73e3c3c5600f["bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource()"] 8a150c4a_e4e5_e673_f687_580f95c20fe3["verifyJsonPathParametersCannotBeResolved()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| 8a150c4a_e4e5_e673_f687_580f95c20fe3 dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e 725e97d2_341b_6665_84bc_9206c7185c54["put()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| 725e97d2_341b_6665_84bc_9206c7185c54 7ed947bf_22a1_2781_a2ae_759aa1907445["add()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445 1aeb892c_57b9_ec83_d74d_921ad48008fa["nonIterable()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| 1aeb892c_57b9_ec83_d74d_921ad48008fa 76576a77_87f7_3680_8561_2923813db3c1["of()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| 76576a77_87f7_3680_8561_2923813db3c1 efd5c3c0_a464_15c1_6a61_68a07d185e5d["getValue()"] 290bba56_1551_d804_c216_73e3c3c5600f -->|calls| efd5c3c0_a464_15c1_6a61_68a07d185e5d style 290bba56_1551_d804_c216_73e3c3c5600f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java lines 420–429
@Test // gh-38201
void bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() throws Exception {
verifyJsonPathParametersCannotBeResolved();
MockConfigurationPropertySource source = new MockConfigurationPropertySource();
source.put("test.value", "test");
this.sources.add(source.nonIterable());
Bindable<NonExtractableParameterName> target = Bindable.of(NonExtractableParameterName.class);
NonExtractableParameterName bound = this.binder.bindOrCreate("test", target);
assertThat(bound.getValue()).isEqualTo("test");
}
Domain
Subdomains
Calls
- MockConfigurationPropertySource()
- add()
- getValue()
- nonIterable()
- of()
- put()
- verifyJsonPathParametersCannotBeResolved()
Source
Frequently Asked Questions
What does bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() do?
bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() is a function in the spring-boot codebase.
What does bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() call?
bindWhenNonExtractableParameterNamesOnPropertyAndNonIterablePropertySource() calls 7 function(s): MockConfigurationPropertySource, add, getValue, nonIterable, of, put, verifyJsonPathParametersCannotBeResolved.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free