|
@@ -2,6 +2,7 @@ package com.ruoyi.web.controller.platform;
|
|
|
|
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
|
import com.ruoyi.common.core.domain.R;
|
|
|
+import com.ruoyi.common.utils.ConstantUtil;
|
|
|
import com.ruoyi.common.utils.file.FileUploadUtils;
|
|
|
import com.ruoyi.system.domain.UploadInfo;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -22,6 +23,15 @@ public class UploadController {
|
|
|
@PostMapping("/uploadImage")
|
|
|
public R<UploadInfo> addSave(@RequestParam("file") MultipartFile file) throws IOException {
|
|
|
//限制文件大小??
|
|
|
+ String originalImgFilename = file.getOriginalFilename();
|
|
|
+ String imgSuffix = originalImgFilename.substring(file.getOriginalFilename().lastIndexOf("."));
|
|
|
+ if (!ConstantUtil.PICTURE.contains(imgSuffix)) {
|
|
|
+ return R.fail("图片类型格式不支持");
|
|
|
+ }
|
|
|
+ //不超过5M
|
|
|
+ if (file.getSize() / 1024 > 5120 ){
|
|
|
+ return R.fail("图片大小超过限制");
|
|
|
+ }
|
|
|
// 上传文件路径
|
|
|
String filePath = RuoYiConfig.getUploadPath();
|
|
|
// 上传并返回新文件名称
|