Posts

Showing posts from January, 2026

Introduction to Backend Development

Image
 Intro to Backend Development Intro to backend VCS Intro to spring boot API's DB's Deploy (AWS) Payment flow Implement Basic Search Optimize project by using REDIS How to mention in resume Skills to achieve: Log reading the debugging the code and to understand the logic to resolve the issue. Search Google and use chatgpt or any other AI tool for information and assistance. Some important notes for Java: Java 17 is supported by AWS and even by Spring boot. How Backend Systems work? Architecture for any webapplication UI layer(Frontend) <-> Server (Backend) <-> db layer UI Layer : Display data in user friendly manner. Do not store any data or hold any data or own any data. Why it don't hold any data. Security reason  Don't want to slow down the system Storage cost. Configuration of devices present over client side. Backend Layer: Where business logic is present Owns all the data DB is also part of it. Used to store data in relational manner to fetch data in ef...