0


腾讯对象存储COS入门使用-后端中转、前端直传两种方式

腾讯平台准备

1、登录腾讯云 - COS对象存储 - 创建存储桶

所属区域选择!

2、配置秘钥:

  1. 用来后端连接云服务器

新建秘钥:

一、后端中转方式

使用

1、导入依赖

  1. <!--腾讯云COS-->
  2. <dependency>
  3. <groupId>com.qcloud</groupId>
  4. <artifactId>cos_api</artifactId>
  5. <version>5.6.54</version>
  6. </dependency>

2、yml配置文件及配置类

application.yml

  1. conf:
  2. cos:
  3. secretId: AKIDXyMgAYn6Z0sadadasdFtU6g9Y6ZwFVo
  4. secretKey: NdpZxzDSDSDDSDFDXrHqPtU8
  5. bucketName: bucket-1309444305
  6. region: ap-chengdu
  7. path: https://bucket-1309444305.cos.ap-chengdu.myqcloud.com
  8. folder: head

读取配置类:

  1. @Component
  2. @ConfigurationProperties(prefix = "conf.cos")
  3. @Data
  4. public class CosConfigProperties {
  5. /**
  6. * 账号ID
  7. */
  8. private String secretId;
  9. /**
  10. * 秘钥
  11. */
  12. private String secretKey;
  13. /**
  14. * 地区
  15. */
  16. private String region;
  17. /**
  18. * 桶名称
  19. */
  20. private String bucketName;
  21. /**
  22. * 路径
  23. */
  24. private String path;
  25. /**
  26. * 文件夹路径
  27. */
  28. private String folder;
  29. /**
  30. * 统一获取cos客户端
  31. */
  32. @Bean
  33. public COSClient cosClient(){
  34. //认证身份信息
  35. COSCredentials cred = new BasicCOSCredentials(this.secretId, this.secretKey);
  36. //区域
  37. Region region = new Region(this.region);
  38. //客户端配置
  39. ClientConfig clientConfig = new ClientConfig(region);
  40. //new一个客户端
  41. COSClient cosClient = new COSClient(cred, clientConfig);
  42. return cosClient;
  43. }
  44. }

3、业务类配置

services

  1. @Slf4j
  2. @Service
  3. public class ICosFileServiceImpl implements ICosFileService {
  4. @Resource
  5. private COSClient cosClient;
  6. @Resource
  7. private CosConfigProperties cosConfig;
  8. @Override
  9. @Transactional(rollbackFor = Exception.class)
  10. public AjaxResult upload(MultipartFile[] files) {
  11. String res = "";
  12. try {
  13. for (MultipartFile file : files) {
  14. String originalFileName = file.getOriginalFilename();
  15. // 获得文件流
  16. InputStream inputStream = null;
  17. inputStream = file.getInputStream();
  18. // 设置文件路径
  19. String filePath = getFilePath(originalFileName, cosConfig.getFolder());
  20. // 上传文件
  21. String bucketName = cosConfig.getBucketName();
  22. ObjectMetadata objectMetadata = new ObjectMetadata();
  23. objectMetadata.setContentLength(file.getSize());
  24. objectMetadata.setContentType(file.getContentType());
  25. PutObjectRequest putObjectRequest = new PutObjectRequest(bucketName, filePath, inputStream, objectMetadata);
  26. cosClient.putObject(putObjectRequest);
  27. cosClient.setBucketAcl(bucketName, CannedAccessControlList.PublicRead);
  28. String url = cosConfig.getPath() + "/" + filePath;
  29. res += url + ",";
  30. }
  31. String paths = res.substring(0, res.length() - 1);
  32. return AjaxResult.me().setResultObj(paths);
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. } finally {
  36. // cosClient.shutdown(); // 第二次上传报错
  37. }
  38. return AjaxResult.me();
  39. }
  40. @Override
  41. public AjaxResult delete(String fileName) {
  42. cosConfig.cosClient();
  43. // 文件桶内路径
  44. String filePath = getDelFilePath(fileName, cosConfig.getFolder());
  45. cosClient.deleteObject(cosConfig.getBucketName(), filePath);
  46. return AjaxResult.me();
  47. }
  48. /**
  49. * 生成文件路径
  50. * @param originalFileName 原始文件名称
  51. * @param folder 存储路径
  52. * @return
  53. */
  54. private String getFilePath(String originalFileName, String folder) {
  55. // 获取后缀名
  56. String fileType = originalFileName.substring(originalFileName.lastIndexOf("."));
  57. // 以文件后缀来存储在存储桶中生成文件夹方便管理
  58. String filePath = folder + "/";
  59. // 去除文件后缀 替换所有特殊字符
  60. String fileStr = StrUtils.removeSuffix(originalFileName, fileType).replaceAll("[^0-9a-zA-Z\\u4e00-\\u9fa5]", "_");
  61. filePath += new DateTime().toString("yyyyMMddHHmmss") + "_" + fileStr + fileType;
  62. log.info("filePath:" + filePath);
  63. return filePath;
  64. }
  65. /**
  66. * 生成文件路径
  67. * @param originalFileName 原始文件名称
  68. * @param folder 存储路径
  69. * @return
  70. */
  71. private String getDelFilePath(String originalFileName, String folder) {
  72. // 获取后缀名
  73. String fileType = originalFileName.substring(originalFileName.lastIndexOf("."));
  74. // 以文件后缀来存储在存储桶中生成文件夹方便管理
  75. String filePath = folder + "/";
  76. // 去除文件后缀 替换所有特殊字符
  77. String fileStr = StrUtils.removeSuffix(originalFileName, fileType).replaceAll("[^0-9a-zA-Z\\u4e00-\\u9fa5]", "_");
  78. filePath += fileStr + fileType;
  79. log.info("filePath:" + filePath);
  80. return filePath;
  81. }
  82. }
  1. public class StrUtils {
  2. /**
  3. * 去除文件后缀
  4. */
  5. public static String removeSuffix(String fileName, String suffix) {
  6. if (fileName == null || suffix == null) {
  7. return fileName;
  8. }
  9. if (fileName.endsWith(suffix)) {
  10. return fileName.substring(0, fileName.length() - suffix.length());
  11. }
  12. return fileName;
  13. }
  14. }

4、接口配置

  1. @RestController
  2. @RequestMapping("/cos")
  3. public class CosFileController {
  4. @Autowired
  5. private ICosFileService iCosFileService;
  6. @ApiOperation(value = "文件上传", httpMethod = "POST")
  7. @PostMapping("/upload")
  8. public AjaxResult upload(@RequestParam("files") MultipartFile[] files) {
  9. return iCosFileService.upload(files);
  10. }
  11. @ApiOperation(value = "文件删除", httpMethod = "POST")
  12. @PostMapping("/delete")
  13. public AjaxResult delete(@RequestParam("fileName") String fileName) {
  14. return iCosFileService.delete(fileName);
  15. }
  16. }

5、测试上传多张图片

一张图片直接返回,多张返回一个逗号拼接

删除

二、前端直传方式

官网文档:对象存储 Web 端直传实践-实践教程-文档中心-腾讯云、

签名接口文档:对象存储 生成预签名 URL-SDK 文档-文档中心-腾讯云

实现过程:

1、在前端选择文件,前端将后缀发送给服务端。

2、服务端根据后缀,生成带时间的随机 COS 文件路径,并计算对应的签名,返回 URL 和签名信息给前端。

3、前端使用 PUT 或 POST 请求,直传文件到 COS

使用

1、导入依赖

同上,注意版本!!

2、yml配置及资源类

同上

3、业务类配置

  1. 在上面
  1. @Slf4j
  2. @Service
  3. public class CosFileServiceImpl implements ICosFileService {
  4. @Resource
  5. private COSClient cosClient;
  6. @Resource
  7. private CosConfigProperties cosConfig;
  8. /**
  9. * 获取签名
  10. */
  11. @Override
  12. public URL getSign(String suffix) {
  13. COSClient cosclient = null;
  14. try {
  15. String secretId = cosConfig.getSecretId();
  16. String secretKey = cosConfig.getSecretKey();
  17. COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);
  18. // 设置区域
  19. ClientConfig clientConfig = new ClientConfig(new Region(cosConfig.getRegion()));
  20. // cos 客户端
  21. cosclient = new COSClient(cred, clientConfig);
  22. String bucketName = cosConfig.getBucketName();
  23. String folder = cosConfig.getFolder();
  24. double ran = Math.random() * 100;
  25. long randomInt = Math.round(ran);
  26. String key = folder + "/" +System.currentTimeMillis() + randomInt + "." + suffix;
  27. Date expirationTime = new Date(System.currentTimeMillis() + 2 * 60 * 1000);
  28. // 填写本次请求的 header。Host 头部会自动补全,只需填入其他头部
  29. Map<String, String> headers = new HashMap<String,String>();
  30. // 填写本次请求的 params。
  31. Map<String, String> params = new HashMap<String,String>();
  32. URL url = cosclient.generatePresignedUrl(bucketName, key, expirationTime, HttpMethodName.PUT, headers, params);
  33. return url;
  34. } catch (Exception e) {
  35. throw new BusinessException("获取cos对象存储服务签名异常:" + e);
  36. }finally {
  37. assert cosclient != null;
  38. cosclient.shutdown();
  39. }
  40. }
  41. }

4、接口配置

  1. @RestController
  2. @RequestMapping("/cos")
  3. public class CosFileController {
  4. @Autowired
  5. private ICosFileService iCosFileService;
  6. @GetMapping("/getSignedUrl/{fileName}")
  7. public AjaxResult getSignedUrl(@PathVariable("fileName") String fileName ) {
  8. return AjaxResult.me().setResultObj(iCosFileService.getSign(fileName));
  9. }
  10. }

5、测试上传

  1. 先拿着文件名后缀名称向后端拿去签

  1. 拿着后端返回的签名去上传腾讯cos服务器

!!!! 传输方式不对

  1. 最终

标签: java 数据库 mysql

本文转载自: https://blog.csdn.net/weixin_44029834/article/details/140259508
版权归原作者 一头生产的驴 所有, 如有侵权,请联系我们删除。

“腾讯对象存储COS入门使用-后端中转、前端直传两种方式”的评论:

还没有评论