Skip to content

Instantly share code, notes, and snippets.

@kaimz
Created March 21, 2023 03:32
Show Gist options
  • Save kaimz/bafa221c24cbaa1278e63fe25d935831 to your computer and use it in GitHub Desktop.
Save kaimz/bafa221c24cbaa1278e63fe25d935831 to your computer and use it in GitHub Desktop.
config.yaml文件读取
public <T> T fromYAML(InputStream inputStream, Class<T> configType) throws IOException {
String content = resolveEnvParams(new InputStreamReader(inputStream));
return yamlMapper.readValue(content, configType);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment