提交 b1facdd9 编写于 作者: sinat_25235033's avatar sinat_25235033

[core]make classpath:/config/ is first scan sureness.yml path

上级 cf3dec99
......@@ -43,7 +43,12 @@ public class DocumentResourceAccess {
Yaml yaml = new Yaml();
InputStream inputStream = null;
try {
inputStream = DocumentResourceAccess.class.getClassLoader().getResourceAsStream(yamlFileName);
// 1. classpath:/config/
// 2. classpath: /
inputStream = DocumentResourceAccess.class.getClassLoader().getResourceAsStream("config/" + yamlFileName);
if (inputStream == null) {
inputStream = DocumentResourceAccess.class.getClassLoader().getResourceAsStream(yamlFileName);
}
if (inputStream == null) {
inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(yamlFileName);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册