componentTypesOfArraysAreRegisteredForReflection() — spring-boot Function Reference
Architecture documentation for the componentTypesOfArraysAreRegisteredForReflection() function in LogbackConfigurationAotContributionTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD f16e0120_5167_e9e6_4f5b_0a4091a49b46["componentTypesOfArraysAreRegisteredForReflection()"] 7ee60c15_c662_037a_50c0_f741c27ef6e0["applyContribution()"] f16e0120_5167_e9e6_4f5b_0a4091a49b46 -->|calls| 7ee60c15_c662_037a_50c0_f741c27ef6e0 3f3e5b42_e3a3_2f34_3837_81a3374be555["invokePublicConstructorsAndInspectAndInvokePublicMethodsOf()"] f16e0120_5167_e9e6_4f5b_0a4091a49b46 -->|calls| 3f3e5b42_e3a3_2f34_3837_81a3374be555 f2c0ff83_dcab_1d2f_7544_bb02a37aaf9c["hasValidTypeName()"] f16e0120_5167_e9e6_4f5b_0a4091a49b46 -->|calls| f2c0ff83_dcab_1d2f_7544_bb02a37aaf9c style f16e0120_5167_e9e6_4f5b_0a4091a49b46 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackConfigurationAotContributionTests.java lines 244–254
@Test
void componentTypesOfArraysAreRegisteredForReflection() {
ComponentModel component = new ComponentModel();
component.setClassName(ArrayParameters.class.getName());
TestGenerationContext generationContext = applyContribution(component);
RuntimeHints runtimeHints = generationContext.getRuntimeHints();
assertThat(invokePublicConstructorsAndInspectAndInvokePublicMethodsOf(InetSocketAddress.class))
.accepts(runtimeHints);
assertThat(runtimeHints).satisfies(hasValidTypeName(InetSocketAddress.class));
assertThat(runtimeHints).satisfies(hasValidTypeName(ArrayParameters.class));
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does componentTypesOfArraysAreRegisteredForReflection() do?
componentTypesOfArraysAreRegisteredForReflection() is a function in the spring-boot codebase.
What does componentTypesOfArraysAreRegisteredForReflection() call?
componentTypesOfArraysAreRegisteredForReflection() calls 3 function(s): applyContribution, hasValidTypeName, invokePublicConstructorsAndInspectAndInvokePublicMethodsOf.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free