customizeCreatedDate() — spring-boot Function Reference
Architecture documentation for the customizeCreatedDate() function in BootBuildImage.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 5269a088_4707_11e4_4bc8_8ccb735114ec["customizeCreatedDate()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a["customize()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a -->|calls| 5269a088_4707_11e4_4bc8_8ccb735114ec 91706a34_a0f3_3d44_a7f3_10efc406387e["getCreatedDate()"] 5269a088_4707_11e4_4bc8_8ccb735114ec -->|calls| 91706a34_a0f3_3d44_a7f3_10efc406387e style 5269a088_4707_11e4_4bc8_8ccb735114ec fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImage.java lines 513–519
private BuildRequest customizeCreatedDate(BuildRequest request) {
String createdDate = getCreatedDate().getOrNull();
if (createdDate != null) {
return request.withCreatedDate(createdDate);
}
return request;
}
Domain
Subdomains
Calls
- getCreatedDate()
Called By
Source
Frequently Asked Questions
What does customizeCreatedDate() do?
customizeCreatedDate() is a function in the spring-boot codebase.
What does customizeCreatedDate() call?
customizeCreatedDate() calls 1 function(s): getCreatedDate.
What calls customizeCreatedDate()?
customizeCreatedDate() is called by 1 function(s): customize.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free