Tag

Custom Starter

0 views collected around this technical thread.

Cognitive Technology Team
Cognitive Technology Team
Jun 5, 2025 · Backend Development

Creating a Custom Spring Boot Starter: Overview, Auto‑Configuration, and Usage

This tutorial explains how to build a custom Spring Boot starter by detailing the auto‑configuration mechanism, loading custom properties, creating the starter and its pom files, and demonstrating its use in a sample application to simplify configuration and bean creation.

Auto‑ConfigurationCustom StarterJava
0 likes · 10 min read
Creating a Custom Spring Boot Starter: Overview, Auto‑Configuration, and Usage
Lobster Programming
Lobster Programming
Sep 18, 2024 · Backend Development

How to Build and Use a Custom Spring Boot Starter in Minutes

Learn step‑by‑step how to create a custom Spring Boot starter, configure its properties, define services and controllers, register it via spring.factories, and then integrate the starter into other projects with Maven dependencies and configuration files.

ConfigurationCustom StarterJava
0 likes · 5 min read
How to Build and Use a Custom Spring Boot Starter in Minutes
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 24, 2024 · Backend Development

Mastering Custom Spring Boot Starters: Version Differences & Real‑World AOP Example

This article explains what custom Spring Boot starters are, why they are useful, outlines the annotation and configuration file changes across Spring Boot 2.6, 2.7 and 3.x, and provides a complete AOP‑based starter implementation with code samples.

AOPAutoConfigurationCustom Starter
0 likes · 8 min read
Mastering Custom Spring Boot Starters: Version Differences & Real‑World AOP Example
Top Architect
Top Architect
Mar 15, 2023 · Backend Development

Creating a Custom Spring Boot Auto‑Configuration and Starter

This article demonstrates how to build a custom Spring Boot auto‑configuration and starter, including a conditional annotation, a WriterTemplate utility that writes to a database or file, Maven setup, property binding, and a usage example that shows the bean being auto‑configured and invoked.

Auto‑ConfigurationCustom StarterJava
0 likes · 17 min read
Creating a Custom Spring Boot Auto‑Configuration and Starter
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 2, 2023 · Backend Development

Master Spring Boot Auto-Configuration: Beans, Conditions, and Custom Starters

This article explains how Spring Boot auto‑configuration works, how to locate candidate configurations, use various @Conditional annotations, and build a custom starter—including naming conventions, property keys, and a complete logging starter example with code snippets.

Auto‑ConfigurationConditional AnnotationsCustom Starter
0 likes · 10 min read
Master Spring Boot Auto-Configuration: Beans, Conditions, and Custom Starters
Architect's Tech Stack
Architect's Tech Stack
Jun 16, 2020 · Backend Development

Deep Dive into Spring Boot Auto‑Configuration and How to Build a Custom Starter

This article explains the inner workings of Spring Boot’s @SpringBootApplication annotation, the loading of auto‑configuration classes from META‑INF/spring.factories, the refresh of the application context, the creation of the embedded Tomcat server, and demonstrates how to create a custom starter with configuration properties.

Auto‑ConfigurationCustom StarterSpring Boot
0 likes · 12 min read
Deep Dive into Spring Boot Auto‑Configuration and How to Build a Custom Starter