getFileName() — spring-boot Function Reference
Architecture documentation for the getFileName() function in ArtifactsLibraries.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3["getFileName()"] b90d033a_04b3_6f75_cb80_b215ee9728a0["doWithLibraries()"] b90d033a_04b3_6f75_cb80_b215ee9728a0 -->|calls| 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3 86423096_f568_0d81_b582_f8109a06784f["getDuplicates()"] 86423096_f568_0d81_b582_f8109a06784f -->|calls| 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3 470f4af2_388e_05b2_6039_f94477befa6f["getArtifactId()"] 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3 -->|calls| 470f4af2_388e_05b2_6039_f94477befa6f be0a5a6e_74a4_2e6f_a1c3_35fa8fd4662a["toString()"] 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3 -->|calls| be0a5a6e_74a4_2e6f_a1c3_35fa8fd4662a style 0e6438d3_62ff_1aa6_5ebb_bbf99b70b8d3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ArtifactsLibraries.java lines 166–175
private String getFileName(Artifact artifact) {
StringBuilder sb = new StringBuilder();
sb.append(artifact.getArtifactId()).append("-").append(artifact.getBaseVersion());
String classifier = artifact.getClassifier();
if (classifier != null) {
sb.append("-").append(classifier);
}
sb.append(".").append(artifact.getArtifactHandler().getExtension());
return sb.toString();
}
Domain
Subdomains
Calls
- getArtifactId()
- toString()
Called By
Source
Frequently Asked Questions
What does getFileName() do?
getFileName() is a function in the spring-boot codebase.
What does getFileName() call?
getFileName() calls 2 function(s): getArtifactId, toString.
What calls getFileName()?
getFileName() is called by 2 function(s): doWithLibraries, getDuplicates.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free