以下来自官网介绍:
MinIO 是一款高性能、分布式的对象存储系统. 它是一款软件产品, 可以100%的运行在标准硬件。即X86等低成本机器也能够很好的运行MinIO。
MinIO与传统的存储和其他的对象存储不同的是:它一开始就针对性能要求更高的私有云标准进行软件架构设计。因为MinIO一开始就只为对象存储而设计。所以他采用了更易用的方式进行设计,它能实现对象存储所需要的全部功能,在性能上也更加强劲,它不会为了更多的业务功能而妥协,失去MinIO的易用性、高效性。 这样的结果所带来的好处是:它能够更简单的实现局有弹性伸缩能力的原生对象存储服务。
MinIO在传统对象存储用例(例如辅助存储,灾难恢复和归档)方面表现出色。同时,它在机器学习、大数据、私有云、混合云等方面的存储技术上也独树一帜。当然,也不排除数据分析、高性能应用负载、原生云的支持。
在中国:阿里巴巴、腾讯、百度、中国联通、华为、中国移动等等9000多家企业也都在使用MinIO产品
MinIO的安装部署之前有发表过推文,如果没有安装部署经验,请先移步部署MinIO服务。
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>7.0.2</version>
</dependency>
# 对象存储配置
minio:
endpoint: http://10.50.60.155:9000/
bucketName: images
accessKey: xxxxx #用户名
secretKey: xxxxx #密码
MinIoConfig
/**
* MinIO配置
*
* @author hacken
* @email hacken_hu@foxmail.com
* @date 2021-11-25 11:25:23
*/
@Configuration
public class MinIoConfig {
@Value("${minio.endpoint}")
protected String endpoint;
@Value("${minio.bucketName}")
protected String bucketName;
@Value("${minio.accessKey}")
protected String accessKey;
@Value("${minio.secretKey}")
protected String secretKey;
@Bean
public MinioClient minioClient() {
MinioClient client = null;
try {
client = new MinioClient(endpoint, accessKey, secretKey);
} catch (Exception e) {
new Exception("MinIO对象存储注入失败");
}
return client;
}
}
/**
* @author hacken
* @email hacken_hu@foxmail.com
* @date 2021-11-25 11:25:23
*/
@Service("minIOStorageService")
public class MinIoStorageServiceImpl implements MinIoStorageService {
@Autowired
private MinioClient minioClient;
@Value("${minio.bucketName}")
private String bucketName;
@Value("${minio.endpoint}")
private String endpoint;
public Image upload(Image image) {
String url = "";
if (!StringUtils.isEmpty(image.getImageBase64())) {
InputStream in = base64ToInputStream(image.getImageBase64());
PutObjectOptions options = null;
String newName = System.currentTimeMillis() + ".jpg";
try {
options = new PutObjectOptions(in.available(), -1);
options.setContentType("image/jpeg");
String year = String.valueOf(DateTime.now().getYear());
String month = String.valueOf(DateTime.now().getMonthOfYear());
minioClient.putObject(bucketName, year + "/" + month + "/" + newName, in, options);
url = endpoint + bucketName + "/" + year + "/" + month + "/" + newName;
image.setImageUrl(url);
} catch (Exception e) {
new Exception("图片上传失败");
} finally {
try {
in.close();
} catch (IOException e) {
new Exception("图片上传关闭流失败");
}
}
}
return image;
}
public void removeObject(String fileName) {
try {
minioClient.removeObject(bucketName, fileName);
} catch (Exception e) {
new Exception("图片删除失败");
}
}
public static InputStream base64ToInputStream(String base64) {
ByteArrayInputStream stream = null;
try {
byte[] bytes = new BASE64Decoder().decodeBuffer(base64.trim());
stream = new ByteArrayInputStream(bytes);
} catch (Exception e) {
e.printStackTrace();
}
return stream;
}
}
ImageController
/**
* 图片存储
*
* @author hacken
* @email hacken_hu@foxmail.com
* @date 2021-11-25 11:48:23
*/
@RestController
@RequestMapping("dfs")
public class ImageController {
@Autowired
private MinIoStorageService storageService;
@PostMapping(value = "/imageData")
public Image imageData(@RequestBody String imageBase64) throws Exception {
Image image = new Image();
image.setImageBase64(imageBase64);
image = storageService.upload(image);
image.setImageBase64(null);
return image;
}
}
注意到返回结果中,已经返回了可直接http访问的图片地址,打开图片地址如下:
上述源码已上传至gitee仓库
❤️ 关注公众号 ❤️
回复关键字 【Minio】 即可获取