我有一个 application.properites 文件,其中包含以下内容:
xxx.xxx = sandbox
xxx.sandbox = 123
xxx.production = 456
我想映射到字符串值 123 以防 xxx.xxx == 沙箱和 456 以防 xxx.xxx == 生产
...
public class temp {
@Value("${??????}")
private String token;
}
是否可以填写煽动的条件??????根据 xxx.xxx 将令牌映射到 123 或 456 吗?