diff --git a/src/test/java/org/springframework/boot/env/TestYml.java b/src/test/java/org/springframework/boot/env/TestYml.java index eab0158cf6c4e84f752e48456872a093233dc159..67835554fa346fe23db75f98705c118ef7ab8870 100644 --- a/src/test/java/org/springframework/boot/env/TestYml.java +++ b/src/test/java/org/springframework/boot/env/TestYml.java @@ -10,5 +10,10 @@ public class TestYml { public static void main(String[] args) throws IOException { + FileSystemResource fileSystemResource = new FileSystemResource("D:\\Idea\\Jpom\\modules\\agent\\target\\agent-2.4.3-release\\extConfig.yml"); + + OriginTrackedYamlLoader originTrackedYamlLoader = new OriginTrackedYamlLoader(fileSystemResource); + List> load = originTrackedYamlLoader.load(); + System.out.println(load); } }