Posts

Showing posts with the label PostgreSQL

Spring Boot + PostgreSQL + Vue.js CRUD: Full stack development example

Image
Hello everyone, In this article, we will learn how to build a full-stack application that is a basic User Management Application using Spring Boot, PostgreSQL, and Vue.js.The  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  We divided this tutorial into two parts PART 1 - Rest APIs Development using Spring Boot and PostgreSQL PART 2 - UI development using Vue.js, Axios & Bootstrap PART 1 - Rest APIs Development using Spring Boot & PostgreSQL These are APIs that Spring backend App will export:   GET all User's        :     /api/v1/users             : Get  GET User by ID      :     /api/v1/users/{id}       : Get CREATE User        :     /api/v1/users             : Post UPDATE User        :     /api/v1/users/{id}