Tag Archives: MySQL

How to Dockerize Spring Boot application with MySQL

By | June 26, 2025

The term Dockerize refers to the process of packaging an application and its dependencies into containers using Docker. Docker is an open-source platform that helps developers automate the deployment of applications into lightweight and portable containers that contain everything needed to run the application, including the source code, libraries, and system tools. In this tutorial,… Read More »

How to generate one million records in SQL

By | May 18, 2023

SQL stands for Structured Query Language. It is used for designing and maintaining structured data in a relational database management system (RDBMS). Structured data are the data that is stored in the form of a table with a structure of rows and columns. SQL allows us to create, access, and manipulate data and the database… Read More »

Bean Validation – How to validate data using Bean Validation?

By | June 19, 2025

The Bean Validation API is used for the validation of constraints on an object model using annotations. It can be very useful for validating the length, format, regular expressions, etc. of an object model. By default, bean validation is a Java specification; we need to explicitly provide its implementation. Basics of Bean Validation API In… Read More »

How to create REST API in Spring Boot? | RESTful User APIs

By | June 17, 2025

API stands for Application Programmable Interface. It is a mechanism that is used for two or more computer programs to communicate with each other using a set of standard protocols. For example, when we try to login to a website, a login api gets called and requests the website’s server for authentication, and the website’s… 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 »