Posts

Showing posts with the label ReactJS

React JS + Spring Boot + 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 React, Spring Boot, and MongoDB.You could download the source code from our Github repository, the download link is provided at the end of this tutorial. Technologies used:   Back-End:   Java 17 Spring Boot 2.7.0 Spring Boot Data Mongo Mongo DB. Front-End:   React 17.0.1 Axios 0.27.2 Bootstrap 4.5.0 Backend Project Directory: Frontend Project Directory: After completing this tutorial what we will build?  We will build a full-stack web application that is a basic User Management Application with CRUD features:  • Create User  • List User  • Update User  • Delete User     List User: Add User: Update User: View User: We will build two projects:  1. springboot-mongodb-crud – Backend 2. react-crud  – Frontend Project 1: springboot-mongodb-crud pom.xml Include spring-boot-starter-web for Spring MVC and REST structure, spring-boot-starter-data-mongodb for CRUD repo

Micronaut + React JS + 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 Micronaut, React and MongoDB. GitHub repository link is provided at the end of this tutorial. You can download the source code. After completing this tutorial what we will build?   We will build a full-stack web application that is a basic User Management Application with CRUD features: • Create User • List User • Update User  • Delete User   Add User: View All Users: Update User: View User: We divided this tutorial into two parts.   PART 1 - Rest APIs Development using Micronaut PART 2 - UI development using React .js  PART 1 - Rest APIs Development using Micronaut  Project Directory: 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. It contains default values for most projects. Some of the conf