customizeBindings() — spring-boot Function Reference
Architecture documentation for the customizeBindings() function in BootBuildImage.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e2a3d4ca_a3a2_8df1_68fd_8db98224cfb2["customizeBindings()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a["customize()"] 44bdad37_cd41_021a_4a76_b2999cac6a5a -->|calls| e2a3d4ca_a3a2_8df1_68fd_8db98224cfb2 d467a47c_78e8_f1e1_4918_5649337cdaa1["getBindings()"] e2a3d4ca_a3a2_8df1_68fd_8db98224cfb2 -->|calls| d467a47c_78e8_f1e1_4918_5649337cdaa1 style e2a3d4ca_a3a2_8df1_68fd_8db98224cfb2 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 481–487
private BuildRequest customizeBindings(BuildRequest request) {
List<String> bindings = getBindings().getOrNull();
if (!CollectionUtils.isEmpty(bindings)) {
return request.withBindings(bindings.stream().map(Binding::of).toList());
}
return request;
}
Domain
Subdomains
Calls
- getBindings()
Called By
Source
Frequently Asked Questions
What does customizeBindings() do?
customizeBindings() is a function in the spring-boot codebase.
What does customizeBindings() call?
customizeBindings() calls 1 function(s): getBindings.
What calls customizeBindings()?
customizeBindings() 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