prepareStoredEntry() — spring-boot Function Reference
Architecture documentation for the prepareStoredEntry() function in BootZipCopyAction.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e9fd5aad_3245_128b_f902_e9cff0b0b483["prepareStoredEntry()"] 8bb6bce9_1656_8045_583c_506fe14b4306["prepareStoredEntry()"] 8bb6bce9_1656_8045_583c_506fe14b4306 -->|calls| e9fd5aad_3245_128b_f902_e9cff0b0b483 8bb6bce9_1656_8045_583c_506fe14b4306["prepareStoredEntry()"] e9fd5aad_3245_128b_f902_e9cff0b0b483 -->|calls| 8bb6bce9_1656_8045_583c_506fe14b4306 style e9fd5aad_3245_128b_f902_e9cff0b0b483 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/BootZipCopyAction.java lines 584–592
void prepareStoredEntry(ZipArchiveEntry entry) {
entry.setSize(this.size);
entry.setCompressedSize(this.size);
entry.setCrc(this.crc.getValue());
entry.setMethod(ZipEntry.STORED);
if (this.unpack) {
entry.setComment("UNPACK");
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does prepareStoredEntry() do?
prepareStoredEntry() is a function in the spring-boot codebase.
What does prepareStoredEntry() call?
prepareStoredEntry() calls 1 function(s): prepareStoredEntry.
What calls prepareStoredEntry()?
prepareStoredEntry() is called by 1 function(s): prepareStoredEntry.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free