Monthly Archives: February 2023

REST Architecture – What are REST APIs?

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 »

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

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 a Spring Boot Project?

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 »

Java OOPs – What is Object Oriented Programming?

The Object Oriented Programming is a paradigm for designing programs using classes and objects. OOPs simplify and speed up software development and maintenance using concepts such as Object, Classes, Inheritance, Polymorphism, Abstraction and Encapsulation. Object An object is a real-world, run-time entity. It has a state and a behavior. For example, A dog is an… Read More »