Commit e6c96af21410c836374e1cd98c754f6898307f70

Authored by 房远帅
1 parent b7638d30

楚江ERP:上传文件路径修改

... ... @@ -106,7 +106,7 @@ jugg:
106 106 #下载时的域名
107 107 domain: http://erp.qgutech.com/api
108 108 #上传文件的路径
109   - location: D:\upload\upload-data
  109 + location: /web/service/erp/xingyun/upload/upload-data
110 110 # 安全上传
111 111 security-upload:
112 112 #下载时的域名,一般情况下和公开上传的域名一致
... ...
... ... @@ -62,6 +62,7 @@ public class SecurityDownloadController extends DefaultBaseController {
62 62 @GetMapping
63 63 public void download(@NotBlank(message = "签名不能为空!") String sign) {
64 64 Object val = redisHandler.hget("security-upload", sign);
  65 + log.info("val====" + val);
65 66 if (val == null) {
66 67 throw new AccessDeniedException();
67 68 }
... ...