SpringBoot实战之文件上传微软云(Azure Storage)_springboot azurestorage blob-程序员宅基地

技术标签: 架构实践  Java上传文件  微软云  Java上传文件到Azure Storage  互联网技术  SpringBoot上传文件  SpringBoot上传微软云  Java上传微软云  

前言

上传文件到Azure Storage 的案例比较少,只能到官网去研究,并且也不一定拿来就可以使用。

Blob 存储简介

为任何种类的非结构化数据使用可进行大规模缩放的对象存储

13.pic.jpg

第一步:配置pom.xml
<!-- https://mvnrepository.com/artifact/com.microsoft.azure/azure-storage -->
<dependency>
    <groupId>com.microsoft.azure</groupId>
    <artifactId>azure-storage</artifactId>
    <version>8.4.0</version>
</dependency>
第二步:增加azure blob配置

可以配置到项目中的*.properties和*yml 文件中

# properties 配置如下
azureblob.defaultEndpointsProtocol=https
azureblob.blobEndpoint=https://teststorage.blob.core.chinacloudapi.cn/
azureblob.queueEndpoint=https://teststorage.queue.core.chinacloudapi.cn/
azureblob.tableEndpoint=https://teststorage.table.core.chinacloudapi.cn/
azureblob.accountName=teststorage
azureblob.accountKey=accountkey

# yml 配置如下
azure blob
  defaultEndpointsProtocol: https
  blobEndpoint: https://teststorage.queue.core.chinacloudapi.cn/
  queueEndpoint: https://teststorage.queue.core.chinacloudapi.cn/
  tableEndpoint: https://teststorage.queue.core.chinacloudapi.cn/
  accountName: teststorage
  accountKey: account key
第三步:编写配置信息类(StorageConfig)
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConfigurationProperties(prefix = "azure blob"
@NoArgsConstructor
@Data
public class StorageConfig {
    @Value("${azureblob.defaultEndpointsProtocol}")
    private String defaultEndpointsProtocol;
    @Value("${azureblob.blobEndpoint}")
    private String blobEndpoint;
    @Value("${azureblob.queueEndpoint}")
    private String queueEndpoint;
    @Value("${azureblob.tableEndpoint}")
    private String tableEndpoint;
    @Value("${azureblob.accountName}")
    private String accountName;
    @Value("${azureblob.accountKey}")
    private String accountKey;
}

**备注:这里用了lombok注解,也可以手写get/set

第四步:编写上传文件类(BlobHelper)
import com.microsoft.azure.storage.CloudStorageAccount;
import com.microsoft.azure.storage.blob.BlobContainerPermissions;
import com.microsoft.azure.storage.blob.BlobContainerPublicAccessType;
import com.microsoft.azure.storage.blob.CloudBlobClient;
import com.microsoft.azure.storage.blob.CloudBlobContainer;
 
public class BlobHelper {
     
    public static CloudBlobContainer getBlobContainer(String containerName, StorageConfig storageConfig)
    {
        try
        {
            String blobStorageConnectionString = String.format("DefaultEndpointsProtocol=%s;"
                    + "BlobEndpoint=%s;"
                    + "QueueEndpoint=%s;"
                    + "TableEndpoint=%s;"
                    + "AccountName=%s;"
                    + "AccountKey=%s", 
                    storageConfig.getDefaultEndpointsProtocol(), storageConfig.getBlobEndpoint(), 
                    storageConfig.getQueueEndpoint(), storageConfig.getTableEndpoint(), 
                    storageConfig.getAccountName(), storageConfig.getAccountKey());
             
            CloudStorageAccount account = CloudStorageAccount.parse(blobStorageConnectionString);
            CloudBlobClient serviceClient = account.createCloudBlobClient();
 
            CloudBlobContainer container = serviceClient.getContainerReference(containerName);
             
            // Create a permissions object.
            BlobContainerPermissions containerPermissions = new BlobContainerPermissions();
 
            // Include public access in the permissions object.
         containerPermissions.setPublicAccess(BlobContainerPublicAccessType.CONTAINER);
            // Set the permissions on the container.
            container.uploadPermissions(containerPermissions);
            container.createIfNotExists();
            return container;
        }
        catch(Exception e)
        {
            // 加载上传文件启动异常
            return null;
        }
    }
}
第五步:增加工具类(MyUtil)
public class MyUtils {
    private static char hexdigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e',
            'f' };

    public static String getMD5(String inStr) {
        MessageDigest md5 = null;
        try {
            md5 = MessageDigest.getInstance("MD5");
        } catch (Exception e) {

            e.printStackTrace();
            return "";
        }
        char[] charArray = inStr.toCharArray();
        byte[] byteArray = new byte[charArray.length];

        for (int i = 0; i < charArray.length; i++)
            byteArray[i] = (byte) charArray[i];

        byte[] md5Bytes = md5.digest(byteArray);

        StringBuffer hexValue = new StringBuffer();

        for (int i = 0; i < md5Bytes.length; i++) {
            int val = ((int) md5Bytes[i]) & 0xff;
            if (val < 16)
                hexValue.append("0");
            hexValue.append(Integer.toHexString(val));
        }

        return hexValue.toString();
    }

    public static String getMD5(InputStream fileStream) {

        try {
            MessageDigest md = MessageDigest.getInstance("MD5");

            byte[] buffer = new byte[2048];
            int length = -1;
            while ((length = fileStream.read(buffer)) != -1) {
                md.update(buffer, 0, length);
            }
            byte[] b = md.digest();
            return byteToHexString(b);
        } catch (Exception ex) {
            ex.printStackTrace();
            return null;
        }finally{
            try {
                fileStream.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

    private static String byteToHexString(byte[] tmp) {
        String s;
        // 用字节表示就是 16 个字节
        char str[] = new char[16 * 2]; // 每个字节用 16 进制表示的话,使用两个字符,
        // 所以表示成 16 进制需要 32 个字符
        int k = 0; // 表示转换结果中对应的字符位置
        for (int i = 0; i < 16; i++) { // 从第一个字节开始,对 MD5 的每一个字节
            // 转换成 16 进制字符的转换
            byte byte0 = tmp[i]; // 取第 i 个字节
            str[k++] = hexdigits[byte0 >>> 4 & 0xf]; // 取字节中高 4 位的数字转换,
            // >>> 为逻辑右移,将符号位一起右移
            str[k++] = hexdigits[byte0 & 0xf]; // 取字节中低 4 位的数字转换
        }
        s = new String(str); // 换后的结果转换为字符串
        return s;
    }
}
第六步:上传文件接口( MultipartFile)
@Api(value = "微软云存储", description = "微软云存储")
@RestController
@RequestMapping("azure")
@Slf4j
public class FileUploadController {
    @Autowired
    private StorageConfig storageConfig;
@ApiOperation(value = "图片上传Azure", notes = "图片上传Azure")
    @RequestMapping(value = "/uploadImg", method = RequestMethod.POST, consumes = "multipart/*", headers = "content-type=multipart/form-data")
    public Object uploadImg(@RequestBody MultipartFile file) {
try {
            if (file != null) {
                //获取或创建container
                CloudBlobContainer blobContainer = BlobHelper.getBlobContainer(blobContainerName, storageConfig);
                if (!file.isEmpty()) {
                    try {
                      
                        //拼装blob的名称(前缀名称+文件的md5值+文件扩展名称)
                        String checkSum = MyUtils.getMD5(file.getInputStream());
                        String fileExtension = getFileExtension(file.getOriginalFilename()).toLowerCase();
                        String preName = getBlobPreName(0, false).toLowerCase();
                        String blobName = preName + checkSum + fileExtension;
                        log.info(blobName);
                        //设置文件类型,并且上传到azure blob
                        CloudBlockBlob blob = blobContainer.getBlockBlobReference(blobName);
                        blob.getProperties().setContentType(file.getContentType());
                        blob.upload(file.getInputStream(), file.getSize());
                        //将上传后的图片URL返回
                        return blob.getUri().toString();
                    } catch (Exception e) {
                        log.error("upload azure oss error:{}", e);
                    }
                }
            }
//            }
        } catch (Exception e) {
            log.error("upload azure oss error:{}", e);
        }
    } 
  return null;
}
结束

好了,一个简单的SpringBoot 上传文件至微软云的小案例就完成啦,当然如果是图片、视频等可能还需要进行文件格式的拦截,代码如下:

if (!(file.getContentType().toLowerCase().equals("image/jpg")
                                || file.getContentType().toLowerCase().equals("image/jpeg")
                                || file.getContentType().toLowerCase().equals("image/png"))) {
                            infoUniformResultTemplate.setCode(Code.FAIL.getCode());
                            log.info("图片格式不正确");
                        }
扩展

14.pic.jpg

Azure 信息保护客户端支持的文件类型如下:

  • Adobe 可移植文档格式:pdf
  • Microsoft Project:.mpp、.mpt
  • Microsoft Publisher:.pub
  • Microsoft XPS:.xps .oxps
  • 图像:.jpg、.jpe、.jpeg、.jif、.jfif、.jfi、 .png、.tif、.tiff
  • Autodesk Design Review 2013:.dwfx
  • Adobe Photoshop:.psd
  • 数码底片:.dng
  • Microsoft Office:*
    官网地址:https://docs.microsoft.com/zh-cn/azure/information-protection/rms-client/client-admin-guide-file-types):
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/zhenghhgz/article/details/101421610

智能推荐

EasyDarwin开源流媒体云平台之EasyRMS录播服务器功能设计_开源录播系统-程序员宅基地

文章浏览阅读3.6k次。需求背景EasyDarwin开发团队维护EasyDarwin开源流媒体服务器也已经很多年了,之前也陆陆续续尝试过很多种服务端录像的方案,有:在EasyDarwin中直接解析收到的RTP包,重新组包录像;也有:在EasyDarwin中新增一个RecordModule,再以RTSPClient的方式请求127.0.0.1自己的直播流录像,但这些始终都没有成气候;我们的想法是能够让整套EasyDarwin_开源录播系统

oracle Plsql 执行update或者delete时卡死问题解决办法_oracle delete update 锁表问题-程序员宅基地

文章浏览阅读1.1w次。今天碰到一个执行语句等了半天没有执行:delete table XXX where ......,但是在select 的时候没问题。后来发现是在执行select * from XXX for update 的时候没有commit,oracle将该记录锁住了。可以通过以下办法解决: 先查询锁定记录 Sql代码 SELECT s.sid, s.seri_oracle delete update 锁表问题

Xcode Undefined symbols 错误_xcode undefined symbols:-程序员宅基地

文章浏览阅读3.4k次。报错信息error:Undefined symbol: typeinfo for sdk::IConfigUndefined symbol: vtable for sdk::IConfig具体信息:Undefined symbols for architecture x86_64: "typeinfo for sdk::IConfig", referenced from: typeinfo for sdk::ConfigImpl in sdk.a(config_impl.o) _xcode undefined symbols:

项目05(Mysql升级07Mysql5.7.32升级到Mysql8.0.22)_mysql8.0.26 升级32-程序员宅基地

文章浏览阅读249次。背景《承接上文,项目05(Mysql升级06Mysql5.6.51升级到Mysql5.7.32)》,写在前面需要(考虑)检查和测试的层面很多,不限于以下内容。参考文档https://dev.mysql.com/doc/refman/8.0/en/upgrade-prerequisites.htmllink推荐阅读以上链接,因为对应以下问题,有详细的建议。官方文档:不得存在以下问题:0.不得有使用过时数据类型或功能的表。不支持就地升级到MySQL 8.0,如果表包含在预5.6.4格_mysql8.0.26 升级32

高通编译8155源码环境搭建_高通8155 qnx 源码-程序员宅基地

文章浏览阅读3.7k次。一.安装基本环境工具:1.安装git工具sudo apt install wget g++ git2.检查并安装java等环境工具2.1、执行下面安装命令#!/bin/bashsudoapt-get-yinstall--upgraderarunrarsudoapt-get-yinstall--upgradepython-pippython3-pip#aliyunsudoapt-get-yinstall--upgradeopenjdk..._高通8155 qnx 源码

firebase 与谷歌_Firebase的好与不好-程序员宅基地

文章浏览阅读461次。firebase 与谷歌 大多数开发人员都听说过Google的Firebase产品。 这就是Google所说的“ 移动平台,可帮助您快速开发高质量的应用程序并发展业务。 ”。 它基本上是大多数开发人员在构建应用程序时所需的一组工具。 在本文中,我将介绍这些工具,并指出您选择使用Firebase时需要了解的所有内容。 在开始之前,我需要说的是,我不会详细介绍Firebase提供的所有工具。 我..._firsebase 与 google

随便推点

k8s挂载目录_kubernetes(k8s)的pod使用统一的配置文件configmap挂载-程序员宅基地

文章浏览阅读1.2k次。在容器化应用中,每个环境都要独立的打一个镜像再给镜像一个特有的tag,这很麻烦,这就要用到k8s原生的配置中心configMap就是用解决这个问题的。使用configMap部署应用。这里使用nginx来做示例,简单粗暴。直接用vim常见nginx的配置文件,用命令导入进去kubectl create cm nginx.conf --from-file=/home/nginx.conf然后查看kub..._pod mount目录会自动创建吗

java计算机毕业设计springcloud+vue基于微服务的分布式新生报到系统_关于spring cloud的参考文献有啥-程序员宅基地

文章浏览阅读169次。随着互联网技术的发发展,计算机技术广泛应用在人们的生活中,逐渐成为日常工作、生活不可或缺的工具,高校各种管理系统层出不穷。高校作为学习知识和技术的高等学府,信息技术更加的成熟,为新生报到管理开发必要的系统,能够有效的提升管理效率。一直以来,新生报到一直没有进行系统化的管理,学生无法准确查询学院信息,高校也无法记录新生报名情况,由此提出开发基于微服务的分布式新生报到系统,管理报名信息,学生可以在线查询报名状态,节省时间,提高效率。_关于spring cloud的参考文献有啥

VB.net学习笔记(十五)继承与多接口练习_vb.net 继承多个接口-程序员宅基地

文章浏览阅读3.2k次。Public MustInherit Class Contact '只能作基类且不能实例化 Private mID As Guid = Guid.NewGuid Private mName As String Public Property ID() As Guid Get Return mID End Get_vb.net 继承多个接口

【Nexus3】使用-Nexus3批量上传jar包 artifact upload_nexus3 批量上传jar包 java代码-程序员宅基地

文章浏览阅读1.7k次。1.美图# 2.概述因为要上传我的所有仓库的包,希望nexus中已有的包,我不覆盖,没有的添加。所以想批量上传jar。3.方案1-脚本批量上传PS:nexus3.x版本只能通过脚本上传3.1 批量放入jar在mac目录下,新建一个文件夹repo,批量放入我们需要的本地库文件夹,并对文件夹授权(base) lcc@lcc nexus-3.22.0-02$ mkdir repo2..._nexus3 批量上传jar包 java代码

关于去隔行的一些概念_mipi去隔行-程序员宅基地

文章浏览阅读6.6k次,点赞6次,收藏30次。本文转自http://blog.csdn.net/charleslei/article/details/486519531、什么是场在介绍Deinterlacer去隔行处理的方法之前,我们有必要提一下关于交错场和去隔行处理的基本知识。那么什么是场呢,场存在于隔行扫描记录的视频中,隔行扫描视频的每帧画面均包含两个场,每一个场又分别含有该帧画面的奇数行扫描线或偶数行扫描线信息,_mipi去隔行

ABAP自定义Search help_abap 自定义 search help-程序员宅基地

文章浏览阅读1.7k次。DATA L_ENDDA TYPE SY-DATUM. IF P_DATE IS INITIAL. CONCATENATE SY-DATUM(4) '1231' INTO L_ENDDA. ELSE. CONCATENATE P_DATE(4) '1231' INTO L_ENDDA. ENDIF. DATA: LV_RESET(1) TY_abap 自定义 search help

推荐文章

热门文章

相关标签