copyApplication() — spring-boot Function Reference
Architecture documentation for the copyApplication() function in BootRunIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 0ffa0138_f69f_4846_c7f8_bb991a7a64c9["copyApplication()"] 2fe229b8_611e_b3a1_0898_58f8c4375cd3["copyMainClassApplication()"] 2fe229b8_611e_b3a1_0898_58f8c4375cd3 -->|calls| 0ffa0138_f69f_4846_c7f8_bb991a7a64c9 b0962c18_0cd6_ab0b_40fc_652f0c4df7c6["copyClasspathApplication()"] b0962c18_0cd6_ab0b_40fc_652f0c4df7c6 -->|calls| 0ffa0138_f69f_4846_c7f8_bb991a7a64c9 372c45ca_fdb2_09c0_3763_08e46877f16d["copyJvmArgsApplication()"] 372c45ca_fdb2_09c0_3763_08e46877f16d -->|calls| 0ffa0138_f69f_4846_c7f8_bb991a7a64c9 style 0ffa0138_f69f_4846_c7f8_bb991a7a64c9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/run/BootRunIntegrationTests.java lines 203–207
private void copyApplication(String name) throws IOException {
File output = new File(this.gradleBuild.getProjectDir(), "src/main/java/com/example/bootrun/" + name);
output.mkdirs();
FileSystemUtils.copyRecursively(new File("src/test/resources/com/example/bootrun/" + name), output);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does copyApplication() do?
copyApplication() is a function in the spring-boot codebase.
What calls copyApplication()?
copyApplication() is called by 3 function(s): copyClasspathApplication, copyJvmArgsApplication, copyMainClassApplication.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free