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