SpringBoot使用云服务器实现文件上传和下载

最近在学习springboot,刚好学到使用对象存储服务器进行文件上传和下载功能,就把常用的云服务厂商的文件上传和下载代码整理一下,本博客持续更新~

腾讯云

依赖


        <dependency>
            <groupId>com.qcloudgroupId>
            <artifactId>cos_apiartifactId>
            <version>5.6.155version>
        dependency>

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-configuration-processorartifactId>
        dependency>

全局配置

像secretId,secretKey,buckname之类的默认参数直接配置在application.properties

# 腾讯云的配置
tencent.cos.bucketName=buckname的名字
tencent.cos.httpPrefix=https://image-bucket-1315162615.cos.ap-guangzhou.myqcloud.com
tencent.cos.region=COS的地址
tencent.cos.secretId=你的id
tencent.cos.secretKey=你的key

实体类

用于存储腾讯云需要配置的参数

@Data
@Component
@ConfigurationProperties(prefix = "tencent.cos")
public class TencentProperties {
    private String secretId;
    private String secretKey;
    private String region;
    private String bucketName;
    private String httpPrefix;
}

工具类

实现腾讯云的文件上传和下载,以下代码都是腾讯云提供的官方SDK改编

@Component
@Slf4j
public class TencentCloud {
    @Autowired
    private TencentProperties tencentProperties;
    public String upload(MultipartFile file) throws IOException {
        /***
         * 使用临时密钥
         */
        // 1 初始化用户身份信息(secretId, secretKey)。
        // SECRETID 和 SECRETKEY 请登录访问管理控制台 https://console.cloud.tencent.com/cam/capi 进行查看和管理
        String secretId = tencentProperties.getSecretId();//用户的 SecretId,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140
        String secretKey = tencentProperties.getSecretKey();//用户的 SecretKey,建议使用子账号密钥,授权遵循最小权限指引,降低使用风险。子账号密钥获取可参见 https://cloud.tencent.com/document/product/598/37140
        COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);
        // 2 设置 bucket 的地域, COS 地域的简称请参见 https://cloud.tencent.com/document/product/436/6224
        // clientConfig 中包含了设置 region, https(默认 http), 超时, 代理等 set 方法, 使用可参见源码或者常见问题 Java SDK 部分。
        Region region = new Region(tencentProperties.getRegion());
        ClientConfig clientConfig = new ClientConfig(region);
        // 这里建议设置使用 https 协议
        // 从 5.6.54 版本开始,默认使用了 https
        clientConfig.setHttpProtocol(HttpProtocol.https);
        // 3 生成 cos 客户端。
        COSClient cosClient = new COSClient(cred, clientConfig);

        /**
         * 上传文件
         */


        // 指定文件将要存放的存储桶
        String bucketName = tencentProperties.getBucketName();
        // 指定文件上传到 COS 上的路径,即对象键。例如对象键为 folder/picture.jpg,则表示将文件 picture.jpg 上传到 folder 路径下
        String key = UUID.randomUUID().toString()+file.getOriginalFilename();
        // 指定要上传的文件
        PutObjectRequest putObjectRequest = new PutObjectRequest(bucketName, key, file.getInputStream(),new ObjectMetadata());
        PutObjectResult putObjectResult = cosClient.putObject(putObjectRequest);

        // 关闭客户端(关闭后台线程)
        cosClient.shutdown();
        String url="https://"+bucketName+".cos."+tencentProperties.getRegion()+".myqcloud.com/"+key;
        log.info("上传文件成功,文件地址为:"+url);
        return  url;
    }
}

你可能感兴趣的:(Java,spring,boot,服务器,后端)