withJarFile() — spring-boot Function Reference
Architecture documentation for the withJarFile() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"] 32a884f4_a2a4_d38a_f6a0_5f19757e3a70["doesNotHaveEntryWithName()"] 32a884f4_a2a4_d38a_f6a0_5f19757e3a70 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 e890f855_7998_7e22_8ed5_4597eeef0d56["hasEntryWithName()"] e890f855_7998_7e22_8ed5_4597eeef0d56 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 c6e6fd64_721b_3b40_100b_5467c2db9533["hasEntryWithNameStartingWith()"] c6e6fd64_721b_3b40_100b_5467c2db9533 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 acb60d7c_9991_7229_d559_dadb91b6d39f["hasUnpackEntryWithNameStartingWith()"] acb60d7c_9991_7229_d559_dadb91b6d39f -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc["doesNotHaveEntryWithNameStartingWith()"] dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 fcc0b4a4_bbdd_661d_1990_fbca3e127226["entryNamesInPath()"] fcc0b4a4_bbdd_661d_1990_fbca3e127226 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 4f774648_ded7_df5c_3421_f9b7b64a8391["manifest()"] 4f774648_ded7_df5c_3421_f9b7b64a8391 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 style ab2d861f_92d2_7163_0173_c0e9c03020e7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/AbstractArchiveIntegrationTests.java lines 199–206
void withJarFile(Consumer<JarFile> consumer) {
try (JarFile jarFile = new JarFile(this.actual)) {
consumer.accept(jarFile);
}
catch (Exception ex) {
throw new RuntimeException(ex);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does withJarFile() do?
withJarFile() is a function in the spring-boot codebase.
What calls withJarFile()?
withJarFile() is called by 7 function(s): doesNotHaveEntryWithName, doesNotHaveEntryWithNameStartingWith, entryNamesInPath, hasEntryWithName, hasEntryWithNameStartingWith, hasUnpackEntryWithNameStartingWith, manifest.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free