Posts

Spring Boot + Angular + MongoDB CRUD example

Image
Hello everyone, today we will learn how to develop a Full-stack web application that is a basic User Management Application using MongoDB, Spring Boot, and Angular 10. The  GitHub repository link is provided at the end of this tutorial. You can download the source code. -Add User: - Retrieve all Users: -User by ID: -Update User: We divided this tutorial into two parts.   PART 1 - Restful API Development with Spring Boot  PART 2 - UI development using Angular 10  PART 1 - Restful API Development with Spring Boot  These are APIs that Spring backend App will export: Backend project structure Maven[pom.xml] A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details utilized by Maven to build the project. <?xml version = "1.0" encoding = "UTF-8" ?> <project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSc