mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-18 09:35:29 +08:00
oss 文件操作
This commit is contained in:
parent
6e51aaf06f
commit
92e1861ec0
@ -95,6 +95,13 @@
|
|||||||
<version>1.0.5</version>
|
<version>1.0.5</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 监控-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
|||||||
@ -1,21 +1,18 @@
|
|||||||
package com.luban.api.controller;
|
package com.luban.api.controller;
|
||||||
|
|
||||||
import cn.hutool.core.util.IdUtil;
|
|
||||||
import com.luban.api.exception.UnifiedException;
|
|
||||||
import com.luban.api.vo.FileVO;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.liuxp.minioplus.api.StorageService;
|
||||||
|
import org.liuxp.minioplus.api.model.vo.FileMetadataInfoVo;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author WeiHongBin
|
* @author WeiHongBin
|
||||||
@ -26,26 +23,12 @@ import java.util.List;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public class UploadController {
|
public class UploadController {
|
||||||
|
|
||||||
// @Value("${upload-path}") todo 改成公共文件上传下载
|
@Autowired
|
||||||
|
private StorageService storageService;
|
||||||
public String uploadPath = "data";
|
|
||||||
|
|
||||||
@Operation(summary = "文件上传")
|
@Operation(summary = "文件上传")
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public List<FileVO> upload(@Validated MultipartFile files) {
|
public FileMetadataInfoVo upload(@Validated MultipartFile files) throws IOException {
|
||||||
String originalFilename = files.getOriginalFilename();
|
return storageService.createFile(files.getOriginalFilename(), true, "1", files.getInputStream());
|
||||||
assert originalFilename != null;
|
|
||||||
String suffix = originalFilename.substring(originalFilename.lastIndexOf(".") + 1);
|
|
||||||
String key = IdUtil.fastSimpleUUID() + "." + suffix;
|
|
||||||
try {
|
|
||||||
files.transferTo(new File(uploadPath + key));
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new UnifiedException("文件上传失败");
|
|
||||||
}
|
|
||||||
return new ArrayList<FileVO>() {{
|
|
||||||
add(new FileVO() {{
|
|
||||||
setUrl(key);
|
|
||||||
}});
|
|
||||||
}};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -75,8 +75,10 @@ mybatis-plus:
|
|||||||
idType: ASSIGN_ID
|
idType: ASSIGN_ID
|
||||||
minioplus:
|
minioplus:
|
||||||
# rustfs 部署地址
|
# rustfs 部署地址
|
||||||
backend: http://localhost:9000
|
backend: http://localhost:19000
|
||||||
|
# rustfs 存储桶
|
||||||
|
bucketPrefix: ruoyih5
|
||||||
# 授权key
|
# 授权key
|
||||||
key: rustfsadmin
|
key: NvcaRhUKFy3fuQpxs7S9
|
||||||
# 密钥
|
# 密钥
|
||||||
secret: rustfsadmin
|
secret: EmyxRXpZba42370A5Oj9YDqUPLCdMiK6WVkSsgoh
|
||||||
|
|||||||
@ -78,9 +78,9 @@ services:
|
|||||||
# 时区上海
|
# 时区上海
|
||||||
TZ: Asia/Shanghai
|
TZ: Asia/Shanghai
|
||||||
# 管理后台用户名
|
# 管理后台用户名
|
||||||
MINIO_ROOT_USER: ruoyi
|
MINIO_ROOT_USER: admin
|
||||||
# 管理后台密码,最小8个字符
|
# 管理后台密码,最小8个字符
|
||||||
MINIO_ROOT_PASSWORD: ruoyi123
|
MINIO_ROOT_PASSWORD: admin123
|
||||||
# https需要指定域名
|
# https需要指定域名
|
||||||
#MINIO_SERVER_URL: "https://xxx.com:9000"
|
#MINIO_SERVER_URL: "https://xxx.com:9000"
|
||||||
#MINIO_BROWSER_REDIRECT_URL: "https://xxx.com:9001"
|
#MINIO_BROWSER_REDIRECT_URL: "https://xxx.com:9001"
|
||||||
|
|||||||
@ -11,8 +11,8 @@ services:
|
|||||||
image: registry.cn-shanghai.aliyuncs.com/study-03/rustfs:latest
|
image: registry.cn-shanghai.aliyuncs.com/study-03/rustfs:latest
|
||||||
container_name: rustfs
|
container_name: rustfs
|
||||||
ports:
|
ports:
|
||||||
- "19000:9000" # 管理控制台
|
- "19000:9000" # API服务端口
|
||||||
- "9090:9090" # API服务端口
|
- "19001:9001" # 管理控制台
|
||||||
volumes:
|
volumes:
|
||||||
- rustfs_data_volume:/data
|
- rustfs_data_volume:/data
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user