Commit c61f2a2f authored by xiaozhe.chen's avatar xiaozhe.chen

添加多数据源和配置中心

parent 7cb4149c
......@@ -97,8 +97,9 @@ public class ApplicationExceptionConfiguration {
Throwable cause = e.getCause();
while (Objects.nonNull(cause.getCause())) {
if (cause instanceof ApplicationException) {
if (cause instanceof ApplicationException) { //todo 如果抛出的不是ApplicationException,是不是就成了死循环
cause = cause.getCause();
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment