Spring Boot Storage Integration with MinIO SDK Versions 7 and 8
Maven Dependency Configuration
For projects using the legacy MinIO SDK version 7, the following dependency structure is required. Note that when using Spring Boot 2.7 or newer, you must explicitly declare the OkHttp dependency before the MinIO dependency to insure compatibility.
<dependency>
<groupId>com.squareup.okhttp3</gro ...
Posted on Sun, 02 Aug 2026 16:45:41 +0000 by koopmaster
MinIO Object Storage Integration with RuoYi Framework
Dependencies and Configuration
Add MinIO SDK dependency in pom.xml:
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.5.7</version>
</dependency>
Configure application.yml:
minio:
endpoint: http://server-ip:9000
access-id: minio-user
secret-key: secur ...
Posted on Thu, 30 Jul 2026 16:21:36 +0000 by 11Tami
Deploying High-Performance Object Storage with MinIO in Docker
Running the Service Container
Acquire a specific MinIO release image from Docker Hub:
docker pull minio/minio:RELEASE.2025-04-22T22-12-26Z
Launch a container with the API and web console ports mapped. Adjust the host bind-mount paths as appropriate for your environment:
docker run -d \
--name minio \
-p 9000:9000 \
-p 9001:9001 \
-v /o ...
Posted on Wed, 29 Jul 2026 16:39:43 +0000 by bex1111
Integrating OSS Object Storage with Spring Boot
This project demonstrates how to integrate an object storage service with a Spring Boot application. We will use Alibaba Cloud OSS (Object Storage Service) as the example provider.
First, insure you have created an OSS instance on Alibaba Cloud and obtained the access keys (Access Key ID and Access Key Secret). (Refer to the Alibaba Cloud docum ...
Posted on Sun, 21 Jun 2026 18:03:27 +0000 by ukalpa
Deploying a Standalone MinIO Instance on Rocky Linux 9
Install Server and Client Packages
# Install MinIO server package
rpm -ivh https://dl.minio.org.cn/server/minio/release/linux-amd64/minio-20230518000536.0.0.x86_64.rpm
# Install MinIO client package
rpm -ivh https://dl.minio.org.cn/client/mc/release/linux-amd64/mcli-20230518165900.0.0.x86_64.rpm
Define Environment Variibles for MinIO
Create / ...
Posted on Sun, 17 May 2026 02:33:38 +0000 by lyealain