Integrate MinIO in Spring Boot via a Custom Starter

Dependency Setup Add the starter to your project's pom.xml. Its recommended to use version 1.0.0. <dependency> <groupId>io.gitee.wangfugui-ma</groupId> <artifactId>minio-spring-boot-starter</artifactId> <version>1.0.0</version> </dependency> Configuration Define the connection details ...

Posted on Fri, 04 Sep 2026 16:31:08 +0000 by Chris12345

Creating a Custom Spring Boot Starter

Custom Spring Boot starters are valuable for encapsulating common functionalities, such as integrating with notification services like Feishu or DingTalk, or standardizing response code handling. Project Setup Initialize a Maven Project: Create a new Maven project, for instance, named holmium-spring-boot-starter. Implement Core Functionalit ...

Posted on Sun, 02 Aug 2026 16:05:18 +0000 by tibiz

Creating a Custom Spring Boot Starter with Auto-Configuration

Begin by creating a new Maven project. The pom.xml should define the Spring Boot parent and include the web sttarter dependency. <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.0</version> <relativePath/> </pa ...

Posted on Thu, 02 Jul 2026 16:33:54 +0000 by traxy

Integrating RocketMQ with Spring Boot: A Deep Dive into Configuration and Source Code

Dependency Setup To begin, include the starter dependency in your Maven project: <dependency> <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-spring-boot-starter</artifactId> <version>2.2.3</version> </dependency> This dependency triggers Spring Boot’s auto-configurati ...

Posted on Thu, 25 Jun 2026 16:36:30 +0000 by MnilinM