DEV Community

loizenai
loizenai

Posted on

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

https://grokonez.com/frontend/vue-js/spring-boot-vue-js-example-spring-data-jpa-rest-mysql-crud

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

In this tutorial, we show you Vue.js Http Client & Spring Boot Server example that uses Spring JPA to do CRUD with MySQL 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-mysql-architecture

Demo

1. Spring Boot Server

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

2. Vue.js Client

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

Practice

1. Spring Boot Server

spring-boot-vue-example-spring-data-jpa-rest-api-mysql-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, findByAge, updateCustomer.
  • Configuration for Spring Datasource and Spring JPA properties in application.properties
  • Dependencies for Spring Boot and MySQL in pom.xml

More at: https://grokonez.com/frontend/vue-js/spring-boot-vue-js-example-spring-data-jpa-rest-mysql-crud

Top comments (0)