|
|
|
@ -1,10 +1,13 @@
|
|
|
|
|
package com.glxp.api.upload;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.exceptions.ExceptionUtil;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.util.MinioUtil;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.apache.commons.lang3.exception.ExceptionUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
@ -21,6 +24,7 @@ import java.util.UUID;
|
|
|
|
|
/**
|
|
|
|
|
* 上传文件控制器
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
@RestController
|
|
|
|
|
public class uploadController {
|
|
|
|
|
|
|
|
|
@ -41,7 +45,8 @@ public class uploadController {
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udiwms/upload/pdf/template/jasper")
|
|
|
|
|
public BaseResponse uploadPDFTemplate(@RequestParam("file") MultipartFile file) throws UnsupportedEncodingException {
|
|
|
|
|
public BaseResponse uploadPDFTemplate(@RequestParam("file") MultipartFile file) {
|
|
|
|
|
log.error("上传jasper文件了");
|
|
|
|
|
if (file.isEmpty()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传文件不能为空");
|
|
|
|
|
}
|
|
|
|
@ -60,6 +65,8 @@ public class uploadController {
|
|
|
|
|
file1.mkdirs();// 创建多层目录
|
|
|
|
|
}
|
|
|
|
|
file1 = new File(savePath + "/" + newName);
|
|
|
|
|
|
|
|
|
|
log.error("创建文件了");
|
|
|
|
|
try {
|
|
|
|
|
file.transferTo(file1);
|
|
|
|
|
Map<String, String> rMap = new HashMap<>();
|
|
|
|
@ -68,6 +75,7 @@ public class uploadController {
|
|
|
|
|
return ResultVOUtils.success(rMap);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
log.error("异常" + ExceptionUtils.getStackTrace(e));
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传失败");
|
|
|
|
|
}
|
|
|
|
|