getStartingMessage() — spring-boot Function Reference
Architecture documentation for the getStartingMessage() function in StartupInfoLogger.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 45c29e67_debc_d15a_0a51_c19210130bb9["getStartingMessage()"] d349ddba_aa53_76b0_2743_f74f7033ec95["append()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| d349ddba_aa53_76b0_2743_f74f7033ec95 de78d30c_feea_54b6_033f_7d294999008e["appendAotMode()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| de78d30c_feea_54b6_033f_7d294999008e 3702c3a7_d082_28f2_3943_bb5d4006f086["appendApplicationName()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| 3702c3a7_d082_28f2_3943_bb5d4006f086 c98c5d1f_bc2f_ea77_ba3c_58a57dcb4987["appendApplicationVersion()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| c98c5d1f_bc2f_ea77_ba3c_58a57dcb4987 1e4f6165_d89f_a43b_cb78_1edd17246ce8["appendJavaVersion()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| 1e4f6165_d89f_a43b_cb78_1edd17246ce8 04603ac8_bffd_5ac0_3068_580f8b7abeb5["appendPid()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| 04603ac8_bffd_5ac0_3068_580f8b7abeb5 a17657e6_9701_6069_2de6_175eea70a83d["appendContext()"] 45c29e67_debc_d15a_0a51_c19210130bb9 -->|calls| a17657e6_9701_6069_2de6_175eea70a83d style 45c29e67_debc_d15a_0a51_c19210130bb9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/StartupInfoLogger.java lines 64–74
private CharSequence getStartingMessage() {
StringBuilder message = new StringBuilder();
message.append("Starting");
appendAotMode(message);
appendApplicationName(message);
appendApplicationVersion(message);
appendJavaVersion(message);
appendPid(message);
appendContext(message);
return message;
}
Domain
Subdomains
Calls
- append()
- appendAotMode()
- appendApplicationName()
- appendApplicationVersion()
- appendContext()
- appendJavaVersion()
- appendPid()
Source
Frequently Asked Questions
What does getStartingMessage() do?
getStartingMessage() is a function in the spring-boot codebase.
What does getStartingMessage() call?
getStartingMessage() calls 7 function(s): append, appendAotMode, appendApplicationName, appendApplicationVersion, appendContext, appendJavaVersion, appendPid.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free