给定一个 application.properties 文件:
myProperties.map.key1=value1
myProperties.map.key2=value2
myProperties.map.key with space=value3
和属性类:
@ConfigurationProperties
public class MyProperties {
private Map<String, String> map;
// getters and setters
}
我试图逃避空间key\ with\ space
,甚至是key\u0020with\u0020space
,但两者仍然像keywithspace
地图一样结束。请指出使用 Spring application.properties 添加带空格键的正确方法进行映射,谢谢。