invokeCustomizers() — spring-boot Function Reference
Architecture documentation for the invokeCustomizers() function in StructuredLogFormatterFactory.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD cd417328_f7f4_294e_549b_844350124954["invokeCustomizers()"] 6f1df6da_a28d_0edd_5516_a00dc1153a58["build()"] 6f1df6da_a28d_0edd_5516_a00dc1153a58 -->|calls| cd417328_f7f4_294e_549b_844350124954 313b0b91_1e97_382b_3023_ecc7b6df8563["withFilter()"] cd417328_f7f4_294e_549b_844350124954 -->|calls| 313b0b91_1e97_382b_3023_ecc7b6df8563 6b1fbf73_794e_e397_2acb_d68589fb2738["invoke()"] cd417328_f7f4_294e_549b_844350124954 -->|calls| 6b1fbf73_794e_e397_2acb_d68589fb2738 style cd417328_f7f4_294e_549b_844350124954 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLogFormatterFactory.java lines 243–249
@SuppressWarnings("unchecked")
private void invokeCustomizers(Members<E> members,
List<StructuredLoggingJsonMembersCustomizer<?>> customizers) {
LambdaSafe.callbacks(StructuredLoggingJsonMembersCustomizer.class, customizers, members)
.withFilter(LambdaSafe.Filter.allowAll())
.invoke((customizer) -> customizer.customize(members));
}
Domain
Subdomains
Calls
- invoke()
- withFilter()
Called By
Source
Frequently Asked Questions
What does invokeCustomizers() do?
invokeCustomizers() is a function in the spring-boot codebase.
What does invokeCustomizers() call?
invokeCustomizers() calls 2 function(s): invoke, withFilter.
What calls invokeCustomizers()?
invokeCustomizers() is called by 1 function(s): build.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free