writeManifest() — spring-boot Function Reference
Architecture documentation for the writeManifest() function in ImageArchive.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c9d8d1c5_fdb3_2e96_52ec_b2a802f33796["writeManifest()"] e4323026_a089_9ff3_39c2_cc5d4a910178["write()"] e4323026_a089_9ff3_39c2_cc5d4a910178 -->|calls| c9d8d1c5_fdb3_2e96_52ec_b2a802f33796 a145474b_96ee_4e7d_6eec_156005f8e3d7["createManifest()"] c9d8d1c5_fdb3_2e96_52ec_b2a802f33796 -->|calls| a145474b_96ee_4e7d_6eec_156005f8e3d7 7113fa8d_2246_a352_b97d_d758ef9fac93["of()"] c9d8d1c5_fdb3_2e96_52ec_b2a802f33796 -->|calls| 7113fa8d_2246_a352_b97d_d758ef9fac93 style c9d8d1c5_fdb3_2e96_52ec_b2a802f33796 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/type/ImageArchive.java lines 206–210
private void writeManifest(Layout writer, String config, List<LayerId> writtenLayers) throws IOException {
ArrayNode manifest = createManifest(config, writtenLayers);
String manifestJson = this.jsonMapper.writeValueAsString(manifest);
writer.file("manifest.json", Owner.ROOT, Content.of(manifestJson));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does writeManifest() do?
writeManifest() is a function in the spring-boot codebase.
What does writeManifest() call?
writeManifest() calls 2 function(s): createManifest, of.
What calls writeManifest()?
writeManifest() is called by 1 function(s): write.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free