customizeEnvironment() — spring-boot Function Reference
Architecture documentation for the customizeEnvironment() function in BootBuildImage.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 8d557e17_aede_30e3_8bd0_5eccef3d6b0a["customizeEnvironment()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a["customize()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a -->|calls| 8d557e17_aede_30e3_8bd0_5eccef3d6b0a be454ab2_28e1_b3bb_977d_28820b191537["getEffectiveEnvironment()"] 8d557e17_aede_30e3_8bd0_5eccef3d6b0a -->|calls| be454ab2_28e1_b3bb_977d_28820b191537 style 8d557e17_aede_30e3_8bd0_5eccef3d6b0a 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 449–455
private BuildRequest customizeEnvironment(BuildRequest request) {
Map<String, String> environment = getEffectiveEnvironment().getOrElse(Collections.emptyMap());
if (!environment.isEmpty()) {
request = request.withEnv(environment);
}
return request;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does customizeEnvironment() do?
customizeEnvironment() is a function in the spring-boot codebase.
What does customizeEnvironment() call?
customizeEnvironment() calls 1 function(s): getEffectiveEnvironment.
What calls customizeEnvironment()?
customizeEnvironment() 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