entryLines() — spring-boot Function Reference
Architecture documentation for the entryLines() function in AbstractBootArchiveTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 14a9479e_f689_cb74_2d3b_06e566c5caa6["entryLines()"] f1401408_a756_dace_a255_79bc239f6fe4["whenJarIsLayeredThenLayersIndexIsPresentAndCorrect()"] f1401408_a756_dace_a255_79bc239f6fe4 -->|calls| 14a9479e_f689_cb74_2d3b_06e566c5caa6 4b7ce582_88c3_a92b_fe9a_eddfdc546fdb["whenJarIsLayeredWithCustomStrategiesThenLayersIndexIsPresentAndCorrect()"] 4b7ce582_88c3_a92b_fe9a_eddfdc546fdb -->|calls| 14a9479e_f689_cb74_2d3b_06e566c5caa6 style 14a9479e_f689_cb74_2d3b_06e566c5caa6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/tasks/bundling/AbstractBootArchiveTests.java lines 768–773
List<String> entryLines(JarFile jarFile, String entryName) throws IOException {
try (BufferedReader reader = new BufferedReader(
new InputStreamReader(jarFile.getInputStream(jarFile.getEntry(entryName))))) {
return reader.lines().toList();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does entryLines() do?
entryLines() is a function in the spring-boot codebase.
What calls entryLines()?
entryLines() is called by 2 function(s): whenJarIsLayeredThenLayersIndexIsPresentAndCorrect, whenJarIsLayeredWithCustomStrategiesThenLayersIndexIsPresentAndCorrect.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free