零一开源—技术|科技|资源分享 零一开源—技术|科技|资源分享

技术分享与兴趣交流

目录
干货!利用SpringBoot+MinIO搭建分布式图片和文件存储服务
/    

干货!利用SpringBoot+MinIO搭建分布式图片和文件存储服务

1、什么是MinIO

以下来自官网介绍:

MinIO 是一款高性能、分布式的对象存储系统. 它是一款软件产品, 可以100%的运行在标准硬件。即X86等低成本机器也能够很好的运行MinIO。

MinIO与传统的存储和其他的对象存储不同的是:它一开始就针对性能要求更高的私有云标准进行软件架构设计。因为MinIO一开始就只为对象存储而设计。所以他采用了更易用的方式进行设计,它能实现对象存储所需要的全部功能,在性能上也更加强劲,它不会为了更多的业务功能而妥协,失去MinIO的易用性、高效性。 这样的结果所带来的好处是:它能够更简单的实现局有弹性伸缩能力的原生对象存储服务。

MinIO在传统对象存储用例(例如辅助存储,灾难恢复和归档)方面表现出色。同时,它在机器学习、大数据、私有云、混合云等方面的存储技术上也独树一帜。当然,也不排除数据分析、高性能应用负载、原生云的支持。

在中国:阿里巴巴、腾讯、百度、中国联通、华为、中国移动等等9000多家企业也都在使用MinIO产品

1.1 特性

1.2 如何部署

MinIO的安装部署之前有发表过推文,如果没有安装部署经验,请先移步部署MinIO服务。

高性能分布式存储服务Minio安装配置入门

2、 与SpringBoot2.x集成

2.1 在springboot项目的pom文件引入依赖

<dependency>
            <groupId>io.minio</groupId>
            <artifactId>minio</artifactId>
            <version>7.0.2</version>
</dependency>

2.2 在application.yml中添加minio配置

# 对象存储配置
minio:
  endpoint: http://10.50.60.155:9000/
  bucketName: images
  accessKey: xxxxx #用户名
  secretKey: xxxxx #密码

2.3 创建MinIO配置类

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;
    }
}

2.4 创建MinIO操作服务类

/**
 * @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;
    }
}

2.5 创建接口服务

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;
  }

}

3、启动项目测试

3.1 postman测试图片上传

注意到返回结果中,已经返回了可直接http访问的图片地址,打开图片地址如下:

4、源码获取

上述源码已上传至gitee仓库

❤️ 关注公众号 ❤️

回复关键字 【Minio】 即可获取


标题:干货!利用SpringBoot+MinIO搭建分布式图片和文件存储服务
作者:hacken
地址:https://www.01open.com/articles/2022/01/14/1642169642847.html