当前位置: 首页 > news >正文

烟台哪儿有可以做淘宝网站的宁波网站优化

烟台哪儿有可以做淘宝网站的,宁波网站优化,网站建设的例子,wordpress字体编辑器MinIO从入门到飞翔 文章目录 MinIO从入门到飞翔0、前言1、分布式文件系统2、MinIO 介绍3、 MinIO安装(docker)4、基本概念5、通过代码上传文件到MinIO6、封装MinIO为starter7、在其他项目中集成封装好的模块 0、前言 对象存储是一种数据存储架构&#x…

MinIO从入门到飞翔

文章目录

    • MinIO从入门到飞翔
      • 0、前言
      • 1、分布式文件系统
      • 2、MinIO 介绍
      • 3、 MinIO安装(docker)
      • 4、基本概念
      • 5、通过代码上传文件到MinIO
      • 6、封装MinIO为starter
      • 7、在其他项目中集成封装好的模块

0、前言

对象存储是一种数据存储架构,设计用于管理和处理大量非结构化数据。与传统的文件存储和块存储不同,对象存储通过将数据分解为离散的、独立的单元或“对象”来存储每个对象包含数据本身、相关的元数据和一个唯一的标识符。

对象存储对比:

存储方式优点缺点
服务器磁盘开发便捷,成本低扩展困难
分布式文件系统容易实现扩容复杂度高
第三方存储开发简单,功能强大,免维护收费

1、分布式文件系统

分布式文件系统(Distributed File System, DFS)是一种文件系统,它使文件可以跨越多个服务器或存储设备存储和访问。DFS 通过网络将多个存储资源组合成一个统一的文件系统,使用户和应用程序可以像访问本地文件一样透明地访问远程文件。

分布式文件系统的关键特性:

  1. 透明性:用户和应用程序可以像访问本地文件一样访问远程文件,感受不到底层的复杂性。
  2. 高可用性:通过复制和冗余机制,确保即使某些节点或硬件发生故障,数据仍然可用。
  3. 可扩展性:能够处理随着数据量和用户数增加而增长的需求。
  4. 容错性:通过数据冗余和错误检测机制,保证系统能继续运行,即使发生部分硬件或网络故障。
  5. 性能:通过分布式架构,能够有效地处理大量并发访问请求。

2、MinIO 介绍

MinIO 是一个高性能的分布式对象存储系统,兼容 Amazon S3 云存储服务,Min10基于Apache License v2.0开源协议的对象存储服务,可以做为云存储的解决方案用来保存海量的图片,视频,文档。它专为大规模存储基础设施设计,能够高效地存储海量非结构化数据,如图片、视频、日志文件等。MinIO 提供了一组简单的 API,用户可以方便地进行数据存储和管理。
image-20240613201643613
官方文档

MinIO 的关键特性

  1. 兼容性
    • 完全兼容 Amazon S3 API,使用户可以使用现有的 S3 客户端和工具。
  2. 高性能
    • 设计为高性能对象存储系统,能够支持每秒数十GB的数据吞吐量。
  3. 可扩展性
    • 支持横向扩展,允许用户通过添加更多的存储节点来扩展存储容量和性能。
  4. 简易部署
    • 提供简单的安装和配置过程,可以在几分钟内启动和运行。
  5. 数据保护
    • 通过纠删码(Erasure Coding)和位衰减(Bit Rot)保护机制确保数据完整性和持久性。
  6. 多租户支持
    • 支持多用户和多租户环境,提供隔离和权限管理。
  7. Kubernetes 集成
    • 提供原生的 Kubernetes Operator,方便在 Kubernetes 集群中部署和管理 MinIO。

3、 MinIO安装(docker)

如果你有 Docker 环境,可以通过以下命令快速拉取并运行 MinIO 容器:

  1. 拉取镜像

    docker pull minio/minio
    
  2. 创建容器

    docker run -p 9000:9000 --name minio -d --restart=always -e "MINIO_ACCESS_KEY=minio" -e "MINIO_SECRET_KEY=minio123" -v /home/data:/data -v /home/config:/root/.minio minio/minio server /data
    
  3. 访问minio系统:

    http://<your_server_ip>:9000

    如:http://192.168.200.130:9000

    image-20240613192145071

4、基本概念

  • bucket – 类比于文件系统的目录

  • Object – 类比文件系统的文件

  • Keys – 类比文件名

image-20240613192311580

5、通过代码上传文件到MinIO

  1. 新建项目,导入pom文件

        <dependencies><dependency><groupId>io.minio</groupId><artifactId>minio</artifactId><version>7.1.0</version></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId></dependency><dependency><groupId>com.heima</groupId><artifactId>heima-file-starter</artifactId><version>1.0-SNAPSHOT</version></dependency></dependencies>
    
  2. 创建test测试文件

    package com.heima.minio.test;import com.heima.file.service.FileStorageService;
    import io.minio.MinioClient;
    import io.minio.PutObjectArgs;
    import org.junit.Test;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;import java.io.FileInputStream;
    import java.io.FileNotFoundException;public class MinIOTest {public static void main(String[] args) {FileInputStream fileInputStream = null;try {fileInputStream =  new FileInputStream("E:\\list.html");;//1.创建minio链接客户端MinioClient minioClient = MinioClient.builder().credentials("minio", "minio123").endpoint("http://192.168.200.130:9000").build();//2.上传PutObjectArgs putObjectArgs = PutObjectArgs.builder().object("list.html")//文件名.contentType("text/html")//文件类型.bucket("leadnews")//桶名词  与minio创建的名词一致.stream(fileInputStream, fileInputStream.available(), -1) //文件流.build();minioClient.putObject(putObjectArgs);System.out.println("http://192.168.200.130:9000/leadnews/list.html");} catch (Exception ex) {ex.printStackTrace();}}
    }
    
  3. 上传文件,点击控制台连接即可访问list.html文件

    image-20240613193719860

  4. 若不能访问,在minio控制系统中,打开访问权限

    image-20240613194053654

    image-20240613194100083

image-20240613194104661

6、封装MinIO为starter

在项目中封装:

  1. 导入依赖

    <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-autoconfigure</artifactId>
    </dependency>
    <dependency><groupId>io.minio</groupId><artifactId>minio</artifactId><version>7.1.0</version>
    </dependency>
    <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>true</optional>
    </dependency>
    <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    
  2. 添加minio配置文件

    package com.heima.file.config;import com.heima.file.service.FileStorageService;
    import io.minio.MinioClient;
    import lombok.Data;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
    import org.springframework.boot.context.properties.EnableConfigurationProperties;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;@Data
    @Configuration
    @EnableConfigurationProperties({MinIOConfigProperties.class})
    //当引入FileStorageService接口时
    @ConditionalOnClass(FileStorageService.class)
    public class MinIOConfig {@Autowiredprivate MinIOConfigProperties minIOConfigProperties;@Beanpublic MinioClient buildMinioClient() {return MinioClient.builder().credentials(minIOConfigProperties.getAccessKey(), minIOConfigProperties.getSecretKey()).endpoint(minIOConfigProperties.getEndpoint()).build();}
    }
    
  3. 在spring管理的bean中注入MinIOFileStorageService(在spring.factories中)

    org.springframework.boot.autoconfigure.EnableAutoConfiguration=\com.heima.file.service.impl.MinIOFileStorageService
    
  4. MinIOFileStorageService文件详情(大概就实现了对于文件资源上传的操作)

    package com.heima.file.service.impl;import com.heima.file.config.MinIOConfig;
    import com.heima.file.config.MinIOConfigProperties;
    import com.heima.file.service.FileStorageService;
    import io.minio.GetObjectArgs;
    import io.minio.MinioClient;
    import io.minio.PutObjectArgs;
    import io.minio.RemoveObjectArgs;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.context.properties.EnableConfigurationProperties;
    import org.springframework.context.annotation.Import;
    import org.springframework.util.StringUtils;import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.text.SimpleDateFormat;
    import java.util.Date;@Slf4j
    @EnableConfigurationProperties(MinIOConfigProperties.class)
    @Import(MinIOConfig.class)
    public class MinIOFileStorageService implements FileStorageService {@Autowiredprivate MinioClient minioClient;@Autowiredprivate MinIOConfigProperties minIOConfigProperties;private final static String separator = "/";/*** @param dirPath* @param filename  yyyy/mm/dd/file.jpg* @return*/public String builderFilePath(String dirPath,String filename) {StringBuilder stringBuilder = new StringBuilder(50);if(!StringUtils.isEmpty(dirPath)){stringBuilder.append(dirPath).append(separator);}SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");String todayStr = sdf.format(new Date());stringBuilder.append(todayStr).append(separator);stringBuilder.append(filename);return stringBuilder.toString();}/***  上传图片文件* @param prefix  文件前缀* @param filename  文件名* @param inputStream 文件流* @return  文件全路径*/@Overridepublic String uploadImgFile(String prefix, String filename,InputStream inputStream) {String filePath = builderFilePath(prefix, filename);try {PutObjectArgs putObjectArgs = PutObjectArgs.builder().object(filePath).contentType("image/jpg").bucket(minIOConfigProperties.getBucket()).stream(inputStream,inputStream.available(),-1).build();minioClient.putObject(putObjectArgs);StringBuilder urlPath = new StringBuilder(minIOConfigProperties.getReadPath());urlPath.append(separator+minIOConfigProperties.getBucket());urlPath.append(separator);urlPath.append(filePath);return urlPath.toString();}catch (Exception ex){log.error("minio put file error.",ex);throw new RuntimeException("上传文件失败");}}/***  上传html文件* @param prefix  文件前缀* @param filename   文件名* @param inputStream  文件流* @return  文件全路径*/@Overridepublic String uploadHtmlFile(String prefix, String filename,InputStream inputStream) {String filePath = builderFilePath(prefix, filename);try {PutObjectArgs putObjectArgs = PutObjectArgs.builder().object(filePath).contentType("text/html").bucket(minIOConfigProperties.getBucket()).stream(inputStream,inputStream.available(),-1).build();minioClient.putObject(putObjectArgs);StringBuilder urlPath = new StringBuilder(minIOConfigProperties.getReadPath());urlPath.append(separator+minIOConfigProperties.getBucket());urlPath.append(separator);urlPath.append(filePath);return urlPath.toString();}catch (Exception ex){log.error("minio put file error.",ex);ex.printStackTrace();throw new RuntimeException("上传文件失败");}}/*** 删除文件* @param pathUrl  文件全路径*/@Overridepublic void delete(String pathUrl) {String key = pathUrl.replace(minIOConfigProperties.getEndpoint()+"/","");int index = key.indexOf(separator);String bucket = key.substring(0,index);String filePath = key.substring(index+1);// 删除ObjectsRemoveObjectArgs removeObjectArgs = RemoveObjectArgs.builder().bucket(bucket).object(filePath).build();try {minioClient.removeObject(removeObjectArgs);} catch (Exception e) {log.error("minio remove file error.  pathUrl:{}",pathUrl);e.printStackTrace();}}/*** 下载文件* @param pathUrl  文件全路径* @return  文件流**/@Overridepublic byte[] downLoadFile(String pathUrl)  {String key = pathUrl.replace(minIOConfigProperties.getEndpoint()+"/","");int index = key.indexOf(separator);String bucket = key.substring(0,index);String filePath = key.substring(index+1);InputStream inputStream = null;try {inputStream = minioClient.getObject(GetObjectArgs.builder().bucket(minIOConfigProperties.getBucket()).object(filePath).build());} catch (Exception e) {log.error("minio down file error.  pathUrl:{}",pathUrl);e.printStackTrace();}ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();byte[] buff = new byte[100];int rc = 0;while (true) {try {if (!((rc = inputStream.read(buff, 0, 100)) > 0)) break;} catch (IOException e) {e.printStackTrace();}byteArrayOutputStream.write(buff, 0, rc);}return byteArrayOutputStream.toByteArray();}
    }
    
  5. 具体模块下载:

    链接:https://pan.baidu.com/s/17eWr0sLCOuF3bWoMravH_A?pwd=m6ls

7、在其他项目中集成封装好的模块

在第5步创建的项目中进行测试使用:

  1. 导入文件管理依赖(自己封装好的,第6步的模块)

        <dependency><groupId>com.heima</groupId><artifactId>heima-file-starter</artifactId><version>1.0-SNAPSHOT</version></dependency>
    
  2. 添加minio配置文件(application.yml文件中)

    minio:accessKey: miniosecretKey: minio123bucket: leadnewsendpoint: http://192.168.200.130:9000readPath: http://192.168.200.130:9000
    
  3. 在spring管理的bean中注入FileStorageService

    package com.heima.minio.test;import com.heima.file.service.FileStorageService;
    import io.minio.MinioClient;
    import io.minio.PutObjectArgs;
    import org.junit.Test;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;import java.io.FileInputStream;
    import java.io.FileNotFoundException;@SpringBootTest( classes = MinIOApplication.class)
    @RunWith(SpringRunner.class)
    public class MinIOTest {public static void main(String[] args) {@Autowiredprivate FileStorageService fileStorageService;@Testpublic void testUpdateImgFile() {try {FileInputStream fileInputStream = new FileInputStream("E:\\test.jpg");String filePath = fileStorageService.uploadImgFile("", "test.jpg", fileInputStream);System.out.println(filePath);} catch (FileNotFoundException e) {e.printStackTrace();}}}
    
  4. 查看上传

    image-20240613201354702

    image-20240613201425855


文章转载自:
http://rsv.xtqr.cn
http://thud.xtqr.cn
http://meteorous.xtqr.cn
http://introspect.xtqr.cn
http://epiphylline.xtqr.cn
http://abmigration.xtqr.cn
http://fractionalism.xtqr.cn
http://noonflower.xtqr.cn
http://vesiculose.xtqr.cn
http://adumbrate.xtqr.cn
http://enslaver.xtqr.cn
http://tapeti.xtqr.cn
http://hornbeam.xtqr.cn
http://stumpage.xtqr.cn
http://liqueur.xtqr.cn
http://halidom.xtqr.cn
http://mastic.xtqr.cn
http://encrimson.xtqr.cn
http://waterlocked.xtqr.cn
http://mfab.xtqr.cn
http://barramunda.xtqr.cn
http://praise.xtqr.cn
http://tyburn.xtqr.cn
http://spinor.xtqr.cn
http://lipizzan.xtqr.cn
http://saxhorn.xtqr.cn
http://cambridgeshire.xtqr.cn
http://cyclometry.xtqr.cn
http://histocompatibility.xtqr.cn
http://highbred.xtqr.cn
http://antimacassar.xtqr.cn
http://thrush.xtqr.cn
http://agate.xtqr.cn
http://apodia.xtqr.cn
http://poitrine.xtqr.cn
http://napier.xtqr.cn
http://chancellory.xtqr.cn
http://spanner.xtqr.cn
http://nocake.xtqr.cn
http://denucleate.xtqr.cn
http://anther.xtqr.cn
http://vicarship.xtqr.cn
http://scherzo.xtqr.cn
http://lardon.xtqr.cn
http://claymore.xtqr.cn
http://tiflis.xtqr.cn
http://orad.xtqr.cn
http://rabbi.xtqr.cn
http://unrestful.xtqr.cn
http://inelegantly.xtqr.cn
http://megalith.xtqr.cn
http://definitude.xtqr.cn
http://waterpower.xtqr.cn
http://carrycot.xtqr.cn
http://religiose.xtqr.cn
http://tavr.xtqr.cn
http://lequear.xtqr.cn
http://palisander.xtqr.cn
http://alchemically.xtqr.cn
http://vasopressin.xtqr.cn
http://tarriance.xtqr.cn
http://sheila.xtqr.cn
http://heterodox.xtqr.cn
http://extrahepatic.xtqr.cn
http://madman.xtqr.cn
http://levitron.xtqr.cn
http://vinification.xtqr.cn
http://eidograph.xtqr.cn
http://quester.xtqr.cn
http://winkle.xtqr.cn
http://waadt.xtqr.cn
http://denounce.xtqr.cn
http://undetermined.xtqr.cn
http://rasping.xtqr.cn
http://diadochic.xtqr.cn
http://azure.xtqr.cn
http://zoolatrous.xtqr.cn
http://piquada.xtqr.cn
http://austin.xtqr.cn
http://sirach.xtqr.cn
http://malediction.xtqr.cn
http://froe.xtqr.cn
http://disjunct.xtqr.cn
http://andiron.xtqr.cn
http://exobiology.xtqr.cn
http://guardhouse.xtqr.cn
http://valletta.xtqr.cn
http://unrelatable.xtqr.cn
http://stomachache.xtqr.cn
http://unhand.xtqr.cn
http://otolaryngology.xtqr.cn
http://aminotriazole.xtqr.cn
http://phosphoglucomutase.xtqr.cn
http://patresfamilias.xtqr.cn
http://aecidium.xtqr.cn
http://botanize.xtqr.cn
http://unequitable.xtqr.cn
http://heptastich.xtqr.cn
http://eddy.xtqr.cn
http://chiccory.xtqr.cn
http://www.dt0577.cn/news/105694.html

相关文章:

  • 帮忙建网站的人今日头条新闻
  • 网站建设中山优化网络销售好不好做
  • 小说推文推广平台宁波seo优化流程
  • 珠海网站建设方案优化长春网站建设模板
  • wordpress模版数北京seo助理
  • 想开一个外企的网站怎么超做企业网站模板源码
  • 软件开发一个月多少钱网站标题优化排名
  • 网站工信部公安备案查询系统日本搜索引擎
  • 汉中专业做网站seo新人怎么发外链
  • 做网站方法怎么推广一个产品
  • 吉安seo嘉兴seo外包公司
  • 南昌网站排名推广做网站排名服务热线
  • 建站广告赚钱百度浏览器下载安装2023版本
  • 广州商旅网站制作如何自己做一个网页
  • 马云做的国外的网站叫什么名字seo优化方法网站快速排名推广渠道
  • flash制作技巧天津seo招聘
  • 哪个网站做恒指好市场监督管理局
  • 网站建设公司的出路国内搜索引擎大全
  • 三河网站seo网址收录网站
  • 网站开发需要学什么深圳优化seo排名
  • 网站首页动画怎么做的搜索引擎优化的主要工作
  • wordpress 防止爆破插件网站优化推广服务
  • 金华企业网站建设站长工具浪潮
  • 怎样建立一个企业网站浏览器下载安装2022最新版
  • 网站建设公司转型统计站老站长推荐草莓
  • 做思维导图的资源网站优化网站的方法
  • 做网站配置香蕉和忘忧草对焦虑的影响
  • 全球做批发的网站如何建立自己的网站
  • 门户网站的定义自媒体平台注册下载
  • 做手机网站用什么程序好福建seo排名培训