Browse Source

响应体增加Content-Length头

lijie 3 years ago
parent
commit
c95c62bc1b

+ 1 - 0
dmp-cloud/dmp-file/src/main/java/com/persagy/dmp/file/service/impl/CompatibleOldFileServiceImpl.java

@@ -289,6 +289,7 @@ public class CompatibleOldFileServiceImpl implements CompatibleOldFileService {
         IoUtil.copy(service.download(fileInfo.getFileBucket(),fileInfo.getFilePath()),response.getOutputStream());
         response.setHeader(CommonConstant.REPONSE_HEAD_CONTENT_DISPOSITION,
                 CommonConstant.REPONSE_HEAD_CONTENT_DISPOSITION_ATTACHMENT + URLEncoder.encode(fileInfo.getFileName(), "UTF-8"));
+        response.setHeader(CommonConstant.REPONSE_HEAD_CONTENT_LENGTH, null==fileInfo.getFileSize()?"0":fileInfo.getFileSize().toString());
         // 4.2021年12月22日12:00:21,先申请下载地址,然后通过重定向的方式直接请求文件服务器进行下载
 //        String fetchUrl = service.fetchUrl(fileInfo.getFileBucket(), fileInfo.getFilePath());
 //        if (StrUtil.isBlank(fetchUrl)){

+ 3 - 0
dmp-cloud/dmp-file/src/main/resources/bootstrap.yml

@@ -6,6 +6,9 @@ spring:
       force: true
       charset: utf-8
       enabled: true
+  servlet:
+    multipart:
+      enabled: true
 
 persagy:
   common:

+ 4 - 6
dmp-common/src/main/java/com/persagy/dmp/common/constant/CommonConstant.java

@@ -55,11 +55,9 @@ public interface CommonConstant {
     /** result字段 */
     String RESULT ="result";
     /**响应头:Content-disposition*/
-    public static final String REPONSE_HEAD_CONTENT_DISPOSITION = "Content-disposition";
-    /**响应头:Content-Type*/
-    public static final String REPONSE_HEAD_CONTENT_TYPE = "Content-Type";
-    /**响应头:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet*/
-    public static final String REPONSE_HEAD_CONTENT_TYPE_SHEET = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
+    String REPONSE_HEAD_CONTENT_DISPOSITION = "Content-disposition";
+    /**响应头:Content-disposition*/
+    String REPONSE_HEAD_CONTENT_LENGTH = "Content-Length";
     /**响应头:attachment;filename=*/
-    public static final String REPONSE_HEAD_CONTENT_DISPOSITION_ATTACHMENT = "attachment;filename=";
+    String REPONSE_HEAD_CONTENT_DISPOSITION_ATTACHMENT = "attachment;filename=";
 }