Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import org.ho.yaml.Yaml;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;

Expand All @@ -13,9 +13,8 @@
* @description
*/
public class ConfigYml {
public Map read() {
String fileName = this.getClass().getClassLoader().getResource("application.yml").getPath();//获取文件路径
File dumpFile=new File(fileName);
public Map read() {
InputStream dumpFile = this.getClass().getClassLoader().getResourceAsStream("application.yml");
Map father = null;
try {
father = Yaml.loadType(dumpFile, HashMap.class);
Expand Down