writeFile() — spring-boot Function Reference
Architecture documentation for the writeFile() function in LoaderZipEntries.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e49709a0_f099_523c_d539_318900c2c4ab["writeFile()"] d649de22_92b1_cb62_1692_93c40663f43b["writeTo()"] d649de22_92b1_cb62_1692_93c40663f43b -->|calls| e49709a0_f099_523c_d539_318900c2c4ab 6e48d287_3484_40ee_d3ef_49f35b7bb0fa["prepareEntry()"] e49709a0_f099_523c_d539_318900c2c4ab -->|calls| 6e48d287_3484_40ee_d3ef_49f35b7bb0fa ab7c4df4_13a4_8366_1642_22be413ee238["copy()"] e49709a0_f099_523c_d539_318900c2c4ab -->|calls| ab7c4df4_13a4_8366_1642_22be413ee238 style e49709a0_f099_523c_d539_318900c2c4ab 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/LoaderZipEntries.java lines 88–93
private void writeFile(ZipArchiveEntry entry, ZipInputStream in, ZipArchiveOutputStream out) throws IOException {
prepareEntry(entry, this.fileMode);
out.putArchiveEntry(entry);
copy(in, out);
out.closeArchiveEntry();
}
Domain
Subdomains
Calls
- copy()
- prepareEntry()
Called By
Source
Frequently Asked Questions
What does writeFile() do?
writeFile() is a function in the spring-boot codebase.
What does writeFile() call?
writeFile() calls 2 function(s): copy, prepareEntry.
What calls writeFile()?
writeFile() is called by 1 function(s): writeTo.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free