Let’s see how to leave log records in Spring Boot.
[Read More]How to send emails with Spring Boot
In this post, we will understand how to send an email with Spring Boot.
[Read More]How to connect SpringBoot with Databases
Spring Boot allows you to connect a database simply with minimal configuration. Let’s see in this post how to connect to a database.
[Read More]Spring Boot Entities
An entity is the representation of information that we need in our application.
This entity could be a user, a product, or any data that our application needs to keep persistently to retrieve when needed.
[Read More]The Repository component in Spring Boot
In this post we will understand what a Repository Component is and how to create a CrudRepository in Spring Boot.
[Read More]The Service component in Spring Boot
In this post we will understand what a Service component is and how it is created in Spring Boot.
[Read More]How to create a Spring Boot Project with Intellij
To create a Spring Boot project we can use the Intellij wizard.
[Read More]How to create a Spring Boot Project with Spring Initilizr
To create a project in Spring Boot we can use ‘Spring Initializr’ utility.
[Read More]The Properties file in Spring Boot
Spring Boot manages a properties file to carry general application settings.
[Read More]The package structure in a Spring Boot application
In an application developed in Spring Boot we must be careful to order and structure the packages in a correct and understandable way. We will see the most standardized way to order packages in Spring Boot.
[Read More]