Last updated: Apr 27, 2022

Project Components

Project Components are the necessary building blocks for any spring boot project like annotations, dependency management, properties, and starters. These aspects need to be taken care of while creating a spring boot project.
Spring Boot Annotations
Spring Boot Annotations provide metadata about a Spring application and explore the Spring Boot Annotations List with examples with FAQs.
Springbootapplication annotation MEDIUM
In Spring Boot, the @SpringBootApplication annotation is a meta-annotation that combines three annotations: @Configuration, @EnableAutoConfiguration, and @ComponentScan.
Spring Boot Application Properties
In a Spring Boot application, the application properties (or application.properties/application.yml) file is used to configure various aspects of the application.
Spring Boot Starters
This blog will learn about Spring Boot starters and third-party starters.
Spring Boot Starter Parent EASY
In Spring Boot, the Spring Boot Starter Parent is a special parent project that simplifies dependency and plugin management in your Spring Boot project.
Spring Boot Starter Web
Spring boot helps to create standalone applications. In this blog, we are discussing Spring Boot Starter Web.
Author Ranjul
2 upvotes
Spring Data JPA
We will be discussing Spring Data JPA in this blog.
Spring Boot Actuator
This article is about Spring Boot Actuator and its features and endpoints. Explore how to enable Spring Boot Starter Actuator with faqs.
Spring Boot Starter Test
In this blog, we will learn about Spring Boot Starter Test, how it works in Spring Boot, and the testing feature it provides.
Spring Boot DevTools EASY
In this article, we’ll be learning about a set of tools that can make the development process a little easier in spring boot.
Spring Boot Packaging
In this blog, we will focus on packaging in spring and its types.
Spring Boot Auto-configuration
Spring Boot auto-configuration simplifies setup by automatically configuring beans based on classpath settings, properties, and defaults. In this blog, we will be discussing Spring Boot Auto-configuration.