createCopyAction() — spring-boot Function Reference
Architecture documentation for the createCopyAction() function in BootWar.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 8b2a1652_48e7_ada2_d5c6_ebbe62137cb1["createCopyAction()"] 2daca2e3_ef24_8a50_c2e9_f4456c580aba["isLayeredDisabled()"] 8b2a1652_48e7_ada2_d5c6_ebbe62137cb1 -->|calls| 2daca2e3_ef24_8a50_c2e9_f4456c580aba 366c967b_4869_3b4b_3d02_17ea6d0134e9["isIncludeJarmodeTools()"] 8b2a1652_48e7_ada2_d5c6_ebbe62137cb1 -->|calls| 366c967b_4869_3b4b_3d02_17ea6d0134e9 style 8b2a1652_48e7_ada2_d5c6_ebbe62137cb1 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/BootWar.java lines 118–126
@Override
protected CopyAction createCopyAction() {
LayerResolver layerResolver = null;
if (!isLayeredDisabled()) {
layerResolver = new LayerResolver(this.resolvedDependencies, this.layered, this::isLibrary);
}
String jarmodeToolsLocation = isIncludeJarmodeTools() ? LIB_DIRECTORY : null;
return this.support.createCopyAction(this, this.resolvedDependencies, layerResolver, jarmodeToolsLocation);
}
Domain
Subdomains
Calls
- isIncludeJarmodeTools()
- isLayeredDisabled()
Source
Frequently Asked Questions
What does createCopyAction() do?
createCopyAction() is a function in the spring-boot codebase.
What does createCopyAction() call?
createCopyAction() calls 2 function(s): isIncludeJarmodeTools, isLayeredDisabled.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free