Sping-Boot 구성:맵 채우기에 사용되는 yaml 키의 공백을 유지하는 방법 구성 속성 클래스가 있다고 가정해 보겠습니다. @ConfigurationProperties(prefix = "whitespace.test") public class WhitespaceTestConfig { private Map configs; public Map getConfigs() { return configs; } public void setConfigs(Map configs) { this.configs = configs; } } 공간이 포함된 키로 구성하려고 합니다. whitespace.test.configs: Key With Whitespace: "I am a value with whitespace in it" 스..