get() — spring-boot Function Reference
Architecture documentation for the get() function in StructuredLogFormatterFactory.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD dcc93a8f_efea_663e_9414_ac83de63b866["get()"] 265004e7_cc1c_e0cb_8596_2c0d8134eea9["get()"] 265004e7_cc1c_e0cb_8596_2c0d8134eea9 -->|calls| dcc93a8f_efea_663e_9414_ac83de63b866 6d727c67_16c2_ff37_7422_61d93f37b9de["StructuredLogFormatterFactory()"] 6d727c67_16c2_ff37_7422_61d93f37b9de -->|calls| dcc93a8f_efea_663e_9414_ac83de63b866 265004e7_cc1c_e0cb_8596_2c0d8134eea9["get()"] dcc93a8f_efea_663e_9414_ac83de63b866 -->|calls| 265004e7_cc1c_e0cb_8596_2c0d8134eea9 style dcc93a8f_efea_663e_9414_ac83de63b866 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLogFormatterFactory.java lines 178–182
@Nullable StructuredLogFormatter<E> get(Instantiator<?> instantiator, String format) {
CommonStructuredLogFormat commonFormat = CommonStructuredLogFormat.forId(format);
CommonFormatterFactory<E> factory = (commonFormat != null) ? this.factories.get(commonFormat) : null;
return (factory != null) ? factory.createFormatter(instantiator) : null;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does get() do?
get() is a function in the spring-boot codebase.
What does get() call?
get() calls 1 function(s): get.
What calls get()?
get() is called by 2 function(s): StructuredLogFormatterFactory, get.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free