parseJsonMetadata() — spring-boot Function Reference
Architecture documentation for the parseJsonMetadata() function in InitializrService.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 108f36d9_1823_32ed_f1e2_edba5402f9e5["parseJsonMetadata()"] b9cdd2c5_3135_06f6_e3ba_18065f7583fb["loadMetadata()"] b9cdd2c5_3135_06f6_e3ba_18065f7583fb -->|calls| 108f36d9_1823_32ed_f1e2_edba5402f9e5 f177244f_956d_b9a1_6675_af2b7b1ec51c["loadServiceCapabilities()"] f177244f_956d_b9a1_6675_af2b7b1ec51c -->|calls| 108f36d9_1823_32ed_f1e2_edba5402f9e5 93aef18e_8dab_4d48_f8cc_e271d0ab6fa3["getContentAsJson()"] 108f36d9_1823_32ed_f1e2_edba5402f9e5 -->|calls| 93aef18e_8dab_4d48_f8cc_e271d0ab6fa3 style 108f36d9_1823_32ed_f1e2_edba5402f9e5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
cli/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/InitializrService.java lines 134–141
private InitializrServiceMetadata parseJsonMetadata(HttpEntity httpEntity) throws IOException {
try {
return new InitializrServiceMetadata(getContentAsJson(httpEntity));
}
catch (JSONException ex) {
throw new ReportableException("Invalid content received from server (" + ex.getMessage() + ")", ex);
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does parseJsonMetadata() do?
parseJsonMetadata() is a function in the spring-boot codebase.
What does parseJsonMetadata() call?
parseJsonMetadata() calls 1 function(s): getContentAsJson.
What calls parseJsonMetadata()?
parseJsonMetadata() is called by 2 function(s): loadMetadata, loadServiceCapabilities.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free