|
@@ -14,6 +14,7 @@ import com.fs.system.mapper.SysConfigMapper;
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.google.common.collect.Maps;
|
|
|
import jodd.util.StringUtil;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import me.chanjar.weixin.common.bean.result.WxMediaUploadResult;
|
|
|
import me.chanjar.weixin.common.error.WxErrorException;
|
|
|
import me.chanjar.weixin.common.error.WxRuntimeException;
|
|
@@ -30,7 +31,7 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
-
|
|
|
+@Slf4j
|
|
|
@Configuration
|
|
|
@ComponentScan("com.fs.system.mapper")
|
|
|
public class WxMaConfiguration {
|
|
@@ -74,6 +75,7 @@ public class WxMaConfiguration {
|
|
|
}
|
|
|
wx.setConfigs(c);
|
|
|
this.properties = wx;
|
|
|
+ log.info("配置加载完毕! 配置文件: {}",JSON.toJSONString(this.properties));
|
|
|
}
|
|
|
|
|
|
public static WxMaService getMaService(String appid) {
|