spring boot 2.1.x 是否支持 yaml 1.2 规范
Does spring boot 2.1.x support yaml 1.2 specification
springboot 2.1.x是否支持yaml 1.2规范?
如果没有,是否可以使用 yaml 1.2 + snakeyaml-engine 作为 spring 引导 application.yml 支持?
Spring 引导使用 snakeyaml 1.23.
根据描述,这是 YAML 1.1
<description>YAML 1.1 parser and emitter for Java</description>
因为 YAML 受 snakeyaml-engine 支持而不在 snakeyaml 中 API 不兼容所以你将无法在 Spring Boot
中使用它
springboot 2.1.x是否支持yaml 1.2规范?
如果没有,是否可以使用 yaml 1.2 + snakeyaml-engine 作为 spring 引导 application.yml 支持?
Spring 引导使用 snakeyaml 1.23.
根据描述,这是 YAML 1.1
<description>YAML 1.1 parser and emitter for Java</description>
因为 YAML 受 snakeyaml-engine 支持而不在 snakeyaml 中 API 不兼容所以你将无法在 Spring Boot
中使用它