writeDeprecated() — spring-boot Function Reference
Architecture documentation for the writeDeprecated() function in ChangelogWriter.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd["writeDeprecated()"] e6d1ffe4_3653_d894_431a_e01ce544139f["write()"] e6d1ffe4_3653_d894_431a_e01ce544139f -->|calls| e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd a422beab_8a54_2ca8_f7e6_bcb40c0a0ddb["sortProperties()"] e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd -->|calls| a422beab_8a54_2ca8_f7e6_bcb40c0a0ddb 937f4eef_02a5_8829_2f86_c06bb1e064e1["writeTable()"] e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd -->|calls| 937f4eef_02a5_8829_2f86_c06bb1e064e1 9158c77a_7765_64a7_7fc0_d823fa269eb7["writeDeprecatedPropertyRow()"] e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd -->|calls| 9158c77a_7765_64a7_7fc0_d823fa269eb7 style e7e0915c_7d86_2d05_9e40_ef5aa68ca0cd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/main/java/org/springframework/boot/configurationmetadata/changelog/ChangelogWriter.java lines 92–97
private void writeDeprecated(List<Difference> differences) {
List<Difference> rows = sortProperties(differences, Difference::newProperty).stream()
.filter(this::isDeprecatedInRelease)
.toList();
writeTable("| Key | Replacement | Reason", rows, this::writeDeprecated);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does writeDeprecated() do?
writeDeprecated() is a function in the spring-boot codebase.
What does writeDeprecated() call?
writeDeprecated() calls 3 function(s): sortProperties, writeDeprecatedPropertyRow, writeTable.
What calls writeDeprecated()?
writeDeprecated() 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