registerHintsWhenHasRecursiveType() — spring-boot Function Reference
Architecture documentation for the registerHintsWhenHasRecursiveType() function in BindableRuntimeHintsRegistrarTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD bdde4bee_75f4_9b0c_7184_c24ac90feb82["registerHintsWhenHasRecursiveType()"] 1f1ab86f_6320_aed2_3ca4_203719d9ba15["registerHints()"] bdde4bee_75f4_9b0c_7184_c24ac90feb82 -->|calls| 1f1ab86f_6320_aed2_3ca4_203719d9ba15 1f8e6adf_e431_e24d_79c7_c3d95086b426["javaBeanBinding()"] bdde4bee_75f4_9b0c_7184_c24ac90feb82 -->|calls| 1f8e6adf_e431_e24d_79c7_c3d95086b426 d928a4e8_396e_d08a_20f7_3906e35731d6["methods()"] bdde4bee_75f4_9b0c_7184_c24ac90feb82 -->|calls| d928a4e8_396e_d08a_20f7_3906e35731d6 8877eda3_7439_8480_81c8_9b4176687435["fields()"] bdde4bee_75f4_9b0c_7184_c24ac90feb82 -->|calls| 8877eda3_7439_8480_81c8_9b4176687435 style bdde4bee_75f4_9b0c_7184_c24ac90feb82 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java lines 189–196
@Test
void registerHintsWhenHasRecursiveType() {
RuntimeHints runtimeHints = registerHints(WithRecursive.class);
assertThat(runtimeHints.reflection().typeHints()).hasSize(2)
.anySatisfy(
javaBeanBinding(WithRecursive.class).methods("getRecursive", "setRecursive").fields("recursive"))
.anySatisfy(javaBeanBinding(Recursive.class).methods("getRecursive", "setRecursive").fields("recursive"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does registerHintsWhenHasRecursiveType() do?
registerHintsWhenHasRecursiveType() is a function in the spring-boot codebase.
What does registerHintsWhenHasRecursiveType() call?
registerHintsWhenHasRecursiveType() calls 4 function(s): fields, javaBeanBinding, methods, registerHints.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free