【对象存储】SpringBoot集成华为云OBS对象存储

 总体思路是后端向华为云OBS服务器申请授权信息并设置过期时间,后端再将授权信息以Map形式发给前端,前端将文件和授权信息直接发给华为云OBS服务器。

1. 引入依赖

		<dependency>
            <groupId>com.huaweicloud</groupId>
            <artifactId>esdk-obs-java</artifactId>
            <version>3.20.6.1</version>
        </dependency>
        
        <dependency>
            <groupId>com.huaweicloud</groupId>
            <artifactId>esdk-obs-java-bundle</artifactId>
            <version>3.23.9</version>
        </dependency>

2. 向前端发送授权码

package com.example.meetings.controller;


import com.obs.services.ObsClient;
import com.obs.services.model.*;
import org.springframework.web.bind.annotation.*;
import java.text.SimpleDateFormat;
import java.util.*;

/**
 * @ClassName: ObsController
 * @Description: OBS服务器Controller
 * @Author: wuhuiju
 * @Version: 1.0
 */
@RestController
@RequestMapping({ "/oss" })
public class HweiYunOBSController {

    /**
     * 完整域名为/oss/policy
     * 返回结果
     formParams.put("x-obs-acl", "public-read");
     formParams.put("content-type", "text/plain");
     formParams.put("accessId", accessId);
     formParams.put("policy", response.getPolicy());
     formParams.put("signature", response.getSignature());
     formParams.put("dir", dir);
     formParams.put("host", host);
     */
    @CrossOrigin
    @GetMapping("/policy")
    public Map<String, Object>  policy() {
        // 访问Id
        String accessId = "************************";

        // 访问密钥
        String accessKey = "************************";

        // Endpoint
        String endpoint = "************************";

        // 填写Bucket名称
        String bucket = "pic";

        // 填写Host地址,格式为https://bucketname.endpoint。
        String host = "https://" + bucket + "." + endpoint;

        // 设置上传到OSS文件的前缀,可置空此项
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");

        // 生成文件夹,以日期为文件夹名
        String dateform = simpleDateFormat.format(new Date());
        String dir = "pic/" + dateform + "/";

        // 创建ObsClient实例
        // 使用永久AK/SK初始化客户端
        ObsClient obsClient = new ObsClient(accessId, accessKey,endpoint);

        try {
            // 生成基于表单上传的请求
            PostSignatureRequest request = new PostSignatureRequest();

            // 返回结果
            Map<String, Object> formParams = new HashMap<String, Object>();

            // 设置对象访问权限为公共读
            formParams.put("x-obs-acl", "public-read");
            // 设置对象MIME类型
            formParams.put("content-type", "image/jpeg");
            request.setFormParams(formParams);

            // 设置表单上传请求有效期,单位:秒
            request.setExpires(3600);
            PostSignatureResponse response = obsClient.createPostSignature(request);

            formParams.put("accessId", accessId);
            formParams.put("policy", response.getPolicy());
            formParams.put("signature", response.getSignature());
            formParams.put("dir", dir);
            formParams.put("host", host);
            return formParams;
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
        return null;
    }
}

  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

CRE_MO

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值