format() — spring-boot Function Reference
Architecture documentation for the format() function in CorrelationIdFormatter.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869["format()"] 423d6767_db6b_f170_c508_aa9c8e9aac61["CorrelationIdFormatter()"] 423d6767_db6b_f170_c508_aa9c8e9aac61 -->|calls| eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 202567f6_1116_26de_ba9d_82bd5ce40a78["format()"] 202567f6_1116_26de_ba9d_82bd5ce40a78 -->|calls| eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 c655a3ad_8814_e419_7f1a_fa4b33450ac2["convert()"] c655a3ad_8814_e419_7f1a_fa4b33450ac2 -->|calls| eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 36f5eaf8_bc90_5fba_a86c_3d292ed42d16["formatTo()"] eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 -->|calls| 36f5eaf8_bc90_5fba_a86c_3d292ed42d16 9e5c0467_89f5_ef63_3ff1_2542132b2b1c["toString()"] eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 -->|calls| 9e5c0467_89f5_ef63_3ff1_2542132b2b1c style eee34fbd_ca1c_e4d8_61ad_2eb2bdf0e869 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/CorrelationIdFormatter.java lines 89–93
public String format(UnaryOperator<@Nullable String> resolver) {
StringBuilder result = new StringBuilder(this.blank.length());
formatTo(resolver, result);
return result.toString();
}
Domain
Subdomains
Calls
Called By
- CorrelationIdFormatter()
- convert()
- format()
Source
Frequently Asked Questions
What does format() do?
format() is a function in the spring-boot codebase.
What does format() call?
format() calls 2 function(s): formatTo, toString.
What calls format()?
format() is called by 3 function(s): CorrelationIdFormatter, convert, format.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free