我目前能够获得我的spring cloud纯文本文件: http://localhost:8888/config-server-client/native/ng.conf?useDefaultLabel
我想知道是否有办法将纯文本文件映射到@Value注释,如下所示:
@Value("${ng.conf}")
private Resource serverConfFile;
或:
@Value("ng.conf")
private String serverConfFileContent;
非常感谢任何帮助。