Posts

Showing posts with the label Java Framework

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

Vaadin + Spring Boot + Spring Data JPA CRUD example

Image
Hello everyone, today we will learn how to develop a simple CRUD web application  using Vaadin, Spring Boot, Spring Data JPA, and H2 Database. Vaadin is the only framework that allows you to write UI 100% in Java without getting bogged down in JS, HTML, and CSS. If you prefer, you can also create layouts in HTML or with a visual designer. Vaadin apps run on the server and handle all communication automatically and securely. The GitHub repository link is provided at the end of this tutorial. You can download the source code. Technologies Used: Spring Boot 2.7.0 JDK 17 Vaadin 14.7.0 Maven 3+ npm package manager H2 Database 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     • View User Project Structure: Dependency Management - Maven - pom.xml <? xml version ="1.0" encoding ="UTF-8" ?>