getTitleSource() — spring-boot Function Reference
Architecture documentation for the getTitleSource() function in ResourceBanner.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8["getTitleSource()"] 13c30c21_0326_9fdb_65c4_642709f0fdda["createNullDefaultSources()"] 13c30c21_0326_9fdb_65c4_642709f0fdda -->|calls| 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8 004fa6cf_e0b4_597c_0085_f27904242c82["createEmptyDefaultSources()"] 004fa6cf_e0b4_597c_0085_f27904242c82 -->|calls| 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8 5ab326b6_6f58_8db8_fda0_00b97378e567["getApplicationTitle()"] 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8 -->|calls| 5ab326b6_6f58_8db8_fda0_00b97378e567 535960e6_048e_2130_d0e0_1d4772172c77["MapWithNullsPropertySource()"] 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8 -->|calls| 535960e6_048e_2130_d0e0_1d4772172c77 style 537a9ee5_e1b7_ef39_790d_c3e92c10d4a8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/ResourceBanner.java lines 117–122
private MapWithNullsPropertySource getTitleSource(@Nullable Class<?> sourceClass, @Nullable String defaultValue) {
String applicationTitle = getApplicationTitle(sourceClass);
Map<String, @Nullable Object> titleMap = Collections.singletonMap("application.title",
(applicationTitle != null) ? applicationTitle : defaultValue);
return new MapWithNullsPropertySource("title", titleMap);
}
Domain
Subdomains
Calls
- MapWithNullsPropertySource()
- getApplicationTitle()
Source
Frequently Asked Questions
What does getTitleSource() do?
getTitleSource() is a function in the spring-boot codebase.
What does getTitleSource() call?
getTitleSource() calls 2 function(s): MapWithNullsPropertySource, getApplicationTitle.
What calls getTitleSource()?
getTitleSource() is called by 2 function(s): createEmptyDefaultSources, createNullDefaultSources.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free