Category Archives: Spring Boot

How to connect Spring Boot with MySQL database?

By | June 19, 2025

Spring Boot is an opinionated spring-based framework that auto-configures web applications with the help of starter packages. Along with the default embedded server, i.e., Tomcat, Spring Boot also comes with the default embedded database. The default database for Spring Boot is H2 DB. Similarly to the default embedded server, we can change the default embedded… Read More »

REST Architecture – What are REST APIs?

By | June 19, 2025

REST stands for REpresentational State Transfer. REST Architecture a software architectural design paradigm which provides a standard way of communication between different computer systems over the web. The computer system that compliant to REST are called Restful systems. These restful system communicate with each other using web-services called Restful Web Services or Restful APIs. These… Read More »

How to design a Database Schema?

By | June 17, 2025

The Database Schema is a type of blueprint or structure which represents the logical view of the database in a formal language supported by DBMS(Database Management System). It defines all the entities and their relationship with each other. The schema does not contain any actual data it’s just a visual representation of the database which… Read More »

MySQL Workbench – How to make database schema in MySQL Workbench?

By | June 17, 2025

MySQL Workbench is an integrated development environment tool for designing and modeling database architecture. It is a unified visual tool for database architects, developers and DBAs(Database Administrators). MySQL Workbench comes along with various integrated tools which can be easily used for administrating purposes of server configurations, executing SQL queries, complex database schema designing and management,… Read More »

How to Create Spring Boot Project using Spring Initializr?

By | June 18, 2025

Spring Boot is a microservice java-based framework which is built on top of the Spring framework. Spring Boot makes it easy to a create stand-alone, production-grade spring-based application that you can just run. Spring Boot benefits over Spring framework Steps By Step Implementation Step 1- Spring initializer In this step, we will create a spring… Read More »