如何使用 spring boot 读取 yaml 文件然后在 localhost 中显示结果?

How to read yaml file then display the result in localhost by using springboot?

我是 Spring Boot 和 YAML 的新手。

如何使用 Spring 引导读取 YAML 文件然后在 localhost 中显示结果?

类似于editor.swagger.io,但它是读取文件而不是编写代码?

您可以使用 Jackson 将 YAML 映射到 Java 对象。 对于 Spring Boot 创建一个带有 / GET 映射和 return 你的 html 的控制器(或者使用 Spring MVC 和模板)。

这些资源可能有用: