printBanner() — spring-boot Function Reference
Architecture documentation for the printBanner() function in Shell.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c66d24d9_92de_c608_c007_48fc4106b6aa["printBanner()"] f16938da_3006_63ee_97a5_d93dc922f67b["run()"] f16938da_3006_63ee_97a5_d93dc922f67b -->|calls| c66d24d9_92de_c608_c007_48fc4106b6aa 3eef67f4_d78b_ff15_3b9e_ab2a38d4af93["ansi()"] c66d24d9_92de_c608_c007_48fc4106b6aa -->|calls| 3eef67f4_d78b_ff15_3b9e_ab2a38d4af93 style c66d24d9_92de_c608_c007_48fc4106b6aa fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
cli/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/shell/Shell.java lines 142–147
private void printBanner() {
String version = getClass().getPackage().getImplementationVersion();
version = (version != null) ? " (v" + version + ")" : "";
System.out.println(ansi("Spring Boot", Code.BOLD).append(version, Code.FAINT));
System.out.println(ansi("Hit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit."));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does printBanner() do?
printBanner() is a function in the spring-boot codebase.
What does printBanner() call?
printBanner() calls 1 function(s): ansi.
What calls printBanner()?
printBanner() is called by 1 function(s): run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free