java SpringBoot 在外部创建yaml文件

时间:2025-04-04 22:02:14

// 1.设置yml格式,一般使用的是最喜欢的格式

DumperOptions dumperOptions = new DumperOptions();

(.BLOCK);

// 2.创建FileWriter

// 路径放自己的路径

String configPath = "D:\\code\\java\\demo3\\StudentDemo\\vhost\\";

FileWriter fileWriter = null;

try {

fileWriter = new FileWriter(new File(configPath));

} catch (IOException e) {

();

}

// 3.创建yaml类

//YAML类是API的入口点

Yaml yamlt = new Yaml(dumperOptions);

//yml文件使用 LinkedHashMap来存储的

LinkedHashMap<String, Object> ymlMap = new LinkedHashMap<>();

//使用put方法添加内容

int index = 2;

int numt = 57567;

String randStry = "ijogugugy";

("index", index);

("num", numt);

("randStr", randStry);

//dump方法生成yaml

(ymlMap, fileWriter);