DEV Community

loizenai
loizenai

Posted on

Spring Boot + Vue.js example | Spring Data JPA + REST + PostgreSQL CRUD

Spring Boot + Vue.js example | Spring Data JPA + REST + PostgreSQL CRUD

https://grokonez.com/spring-framework/spring-data/spring-boot-vue-example-spring-data-jpa-rest-postgresql-crud-example

Spring Boot + Vue.js example | Spring Data JPA + REST + PostgreSQL CRUD

In this tutorial, we show you Vue.js Http Client & Spring Boot Server example that uses Spring JPA to do CRUD with PostgreSQL and Vue.js as a front-end technology to make request and receive response.

Related Posts:

Technologies

– Java 1.8
– Maven 3.3.9
– Spring Tool Suite – Version 3.8.4.RELEASE
– Spring Boot: 2.0.5.RELEASE

  • Vue 2.5.17
  • Vue Router 3
  • Axios 0.18.0

    Overview

    This is full-stack Architecture:

spring-boot-vue-example-spring-data-jpa-rest-api-postgresql-architecture

Demo

1. Spring Boot Server

spring-boot-vue-example-spring-data-jpa-rest-api-postgresql-architecture-server

2. Vue.js Client

spring-boot-vue-example-spring-data-jpa-rest-api-postgresql-client

Practice

1. Spring Boot Server

spring-boot-vue-example-spring-data-jpa-rest-api-postgresql-project-structure-server

  • Customer class corresponds to entity and table customer.
  • CustomerRepository is an interface extends CrudRepository, will be autowired in CustomerController for implementing repository methods and custom finder methods.
  • CustomerController is a REST Controller which has request mapping methods for RESTful requests such as: getAllCustomers, postCustomer, deleteCustomer,

https://grokonez.com/spring-framework/spring-data/spring-boot-vue-example-spring-data-jpa-rest-postgresql-crud-example

Top comments (0)