在我的spring boot项目中,我有这样的属性文件。
textburst:
acl:
sendToPodio: true
zillowIntegration: false
root:
directory:
upload:
我需要从该文件中获取textburst.acl下的所有值 我尝试使用以下方法
@Service
public class FeatureServiceImpl implements FeatureService {
@Value("${textburst.acl}")
private String features;
@Override
public Map<String, String> getAllFeatures() {
System.out.println(features);
return null;
}
}
但是它说无法解析值'textburst.acl'
中的占位符"${textburst.acl}"
是否可以获取textburst.acl
下的所有属性?
任何帮助都会很棒