https://github.com/knowledgefactory4u/springboot3-postgresql-vue3-crud
Spring Boot 3 + Vue JS 3 + PostgreSQL CRUD Application Example
https://github.com/knowledgefactory4u/springboot3-postgresql-vue3-crud
crud postgresql springboot3 vue3
Last synced: 3 months ago
JSON representation
Spring Boot 3 + Vue JS 3 + PostgreSQL CRUD Application Example
- Host: GitHub
- URL: https://github.com/knowledgefactory4u/springboot3-postgresql-vue3-crud
- Owner: knowledgefactory4u
- Created: 2023-02-06T17:15:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-02T11:16:07.000Z (over 2 years ago)
- Last Synced: 2025-03-25T17:23:36.327Z (3 months ago)
- Topics: crud, postgresql, springboot3, vue3
- Language: Java
- Homepage: https://www.knowledgefactory.net/2023/02/spring-boot-3-vue-js-3-postgresql-crud-application-example.html
- Size: 239 KB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot 3 + Vue JS 3 + PostgreSQL CRUD Application Example
# 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
# Local Setup and Run the application
Step 1: Download or clone the source code from GitHub to the local machine
# Backend
Step 2: ```mvn clean install```
Step 3: ```mvn spring-boot:run```
# Frontend
Step 4: ```npm install```
Step 5: ```npm run serve -- --port 8081```
# From the browser call the endpoint http://localhost:8081/.