Spring Boot Init Database

When we are developing Spring Boot applications it is a very common need to create tables and load into its data. Spring Boot provides an easy way to load initial SQL queries to insert registries in our database. Here we are going to understand how to initialize data with SQL files that Spring can load when it is starting.

[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]