springboot:整合minio

x33g5p2x  于2022-04-27 转载在 Spring  
字(6.3k)|赞(0)|评价(0)|浏览(624)

springboot:整合minio

一、安装minio

docker安装minio

minIo文档

安装上面这篇博客进入minio控制台,创建bucket

二、集成

依赖

  1. <!--minio-->
  2. <dependency>
  3. <groupId>io.minio</groupId>
  4. <artifactId>minio</artifactId>
  5. <version>8.0.3</version>
  6. </dependency>

yaml配置

  1. spring:
  2. # 配置文件上传大小限制
  3. servlet:
  4. multipart:
  5. max-file-size: 200MB
  6. max-request-size: 200MB
  7. minio:
  8. endpoint: http://127.0.0.1:9000
  9. accessKey: admin
  10. secretKey: admin
  11. bucketName: test

配置类

  1. package com.yolo.springbootminio.config;
  2. import io.minio.MinioClient;
  3. import lombok.Data;
  4. import org.springframework.beans.factory.annotation.Value;
  5. import org.springframework.context.annotation.Bean;
  6. import org.springframework.stereotype.Component;
  7. @Data
  8. @Component
  9. public class MinIoClientConfig {
  10. @Value("${minio.endpoint}")
  11. private String endpoint;
  12. @Value("${minio.accessKey}")
  13. private String accessKey;
  14. @Value("${minio.secretKey}")
  15. private String secretKey;
  16. /**
  17. * 注入minio 客户端
  18. * @return
  19. */
  20. @Bean
  21. public MinioClient minioClient(){
  22. return MinioClient.builder()
  23. .endpoint(endpoint)
  24. .credentials(accessKey, secretKey)
  25. .build();
  26. }
  27. }

工具类

  1. package com.yolo.springbootminio.util;
  2. import io.minio.*;
  3. import io.minio.messages.DeleteError;
  4. import io.minio.messages.DeleteObject;
  5. import io.minio.messages.Item;
  6. import lombok.Data;
  7. import org.apache.tomcat.util.http.fileupload.IOUtils;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.beans.factory.annotation.Value;
  10. import org.springframework.http.HttpHeaders;
  11. import org.springframework.http.HttpStatus;
  12. import org.springframework.http.MediaType;
  13. import org.springframework.http.ResponseEntity;
  14. import org.springframework.stereotype.Component;
  15. import org.springframework.web.multipart.MultipartFile;
  16. import java.io.ByteArrayOutputStream;
  17. import java.io.IOException;
  18. import java.io.InputStream;
  19. import java.io.UnsupportedEncodingException;
  20. import java.net.URLEncoder;
  21. import java.util.ArrayList;
  22. import java.util.Arrays;
  23. import java.util.List;
  24. import java.util.stream.Collectors;
  25. /**
  26. * @description: minio工具类
  27. * @version:3.0
  28. */
  29. @Component
  30. public class MinIoUtil {
  31. @Autowired
  32. private MinioClient minioClient;
  33. @Value("${minio.bucketName}")
  34. private String bucketName;
  35. /**
  36. * description: 判断bucket是否存在,不存在则创建
  37. *
  38. * @return: void
  39. */
  40. public void existBucket(String name) {
  41. try {
  42. boolean exists = minioClient.bucketExists(BucketExistsArgs.builder().bucket(name).build());
  43. if (!exists) {
  44. minioClient.makeBucket(MakeBucketArgs.builder().bucket(name).build());
  45. }
  46. } catch (Exception e) {
  47. e.printStackTrace();
  48. }
  49. }
  50. /**
  51. * 创建存储bucket
  52. * @param bucketName 存储bucket名称
  53. * @return Boolean
  54. */
  55. public Boolean makeBucket(String bucketName) {
  56. try {
  57. minioClient.makeBucket(MakeBucketArgs.builder()
  58. .bucket(bucketName)
  59. .build());
  60. } catch (Exception e) {
  61. e.printStackTrace();
  62. return false;
  63. }
  64. return true;
  65. }
  66. /**
  67. * 删除存储bucket
  68. * @param bucketName 存储bucket名称
  69. * @return Boolean
  70. */
  71. public Boolean removeBucket(String bucketName) {
  72. try {
  73. minioClient.removeBucket(RemoveBucketArgs.builder()
  74. .bucket(bucketName)
  75. .build());
  76. } catch (Exception e) {
  77. e.printStackTrace();
  78. return false;
  79. }
  80. return true;
  81. }
  82. /**
  83. * description: 上传文件
  84. *
  85. * @param multipartFile
  86. * @return: java.lang.String
  87. */
  88. public List<String> upload(MultipartFile[] multipartFile) {
  89. List<String> names = new ArrayList<>(multipartFile.length);
  90. for (MultipartFile file : multipartFile) {
  91. String fileName = file.getOriginalFilename();
  92. String[] split = fileName.split("\\.");
  93. if (split.length > 1) {
  94. fileName = split[0] + "_" + System.currentTimeMillis() + "." + split[1];
  95. } else {
  96. fileName = fileName + System.currentTimeMillis();
  97. }
  98. InputStream in = null;
  99. try {
  100. in = file.getInputStream();
  101. minioClient.putObject(PutObjectArgs.builder()
  102. .bucket(bucketName)
  103. .object(fileName)
  104. .stream(in, in.available(), -1)
  105. .contentType(file.getContentType())
  106. .build()
  107. );
  108. } catch (Exception e) {
  109. e.printStackTrace();
  110. } finally {
  111. if (in != null) {
  112. try {
  113. in.close();
  114. } catch (IOException e) {
  115. e.printStackTrace();
  116. }
  117. }
  118. }
  119. names.add(fileName);
  120. }
  121. return names;
  122. }
  123. /**
  124. * description: 下载文件
  125. *
  126. * @param fileName
  127. * @return: org.springframework.http.ResponseEntity<byte [ ]>
  128. */
  129. public ResponseEntity<byte[]> download(String fileName) {
  130. ResponseEntity<byte[]> responseEntity = null;
  131. InputStream in = null;
  132. ByteArrayOutputStream out = null;
  133. try {
  134. in = minioClient.getObject(GetObjectArgs.builder().bucket(bucketName).object(fileName).build());
  135. out = new ByteArrayOutputStream();
  136. IOUtils.copy(in, out);
  137. //封装返回值
  138. byte[] bytes = out.toByteArray();
  139. HttpHeaders headers = new HttpHeaders();
  140. try {
  141. headers.add("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));
  142. } catch (UnsupportedEncodingException e) {
  143. e.printStackTrace();
  144. }
  145. headers.setContentLength(bytes.length);
  146. headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
  147. headers.setAccessControlExposeHeaders(Arrays.asList("*"));
  148. responseEntity = new ResponseEntity<byte[]>(bytes, headers, HttpStatus.OK);
  149. } catch (Exception e) {
  150. e.printStackTrace();
  151. } finally {
  152. try {
  153. if (in != null) {
  154. try {
  155. in.close();
  156. } catch (IOException e) {
  157. e.printStackTrace();
  158. }
  159. }
  160. if (out != null) {
  161. out.close();
  162. }
  163. } catch (IOException e) {
  164. e.printStackTrace();
  165. }
  166. }
  167. return responseEntity;
  168. }
  169. /**
  170. * 查看文件对象
  171. * @param bucketName 存储bucket名称
  172. * @return 存储bucket内文件对象信息
  173. */
  174. public List<ObjectItem> listObjects(String bucketName) {
  175. Iterable<Result<Item>> results = minioClient.listObjects(
  176. ListObjectsArgs.builder().bucket(bucketName).build());
  177. List<ObjectItem> objectItems = new ArrayList<>();
  178. try {
  179. for (Result<Item> result : results) {
  180. Item item = result.get();
  181. ObjectItem objectItem = new ObjectItem();
  182. objectItem.setObjectName(item.objectName());
  183. objectItem.setSize(item.size());
  184. objectItems.add(objectItem);
  185. }
  186. } catch (Exception e) {
  187. e.printStackTrace();
  188. return null;
  189. }
  190. return objectItems;
  191. }
  192. /**
  193. * 批量删除文件对象
  194. * @param bucketName 存储bucket名称
  195. * @param objects 对象名称集合
  196. */
  197. public Iterable<Result<DeleteError>> removeObjects(String bucketName, List<String> objects) {
  198. List<DeleteObject> dos = objects.stream().map(DeleteObject::new).collect(Collectors.toList());
  199. return minioClient.removeObjects(RemoveObjectsArgs.builder().bucket(bucketName).objects(dos).build());
  200. }
  201. @Data
  202. public static class ObjectItem {
  203. private String objectName;
  204. private Long size;
  205. }
  206. }

控制器

  1. @RestController
  2. @Slf4j
  3. public class MinioController {
  4. @Autowired
  5. private MinIoUtil minioUtil;
  6. @Value("${minio.endpoint}")
  7. private String address;
  8. @Value("${minio.bucketName}")
  9. private String bucketName;
  10. @PostMapping("/upload")
  11. public Object upload(MultipartFile file) {
  12. List<String> upload = minioUtil.upload(new MultipartFile[]{file});
  13. return address+"/"+bucketName+"/"+upload.get(0);
  14. }
  15. }

然后把这个地址输入到浏览器,这里看不到图片,是因为没有设置buckets的策略

相关文章