Ravishankarcode / spring-boot-mysql-CURD-jpa-rest-api

Tutorial for Spring Boot Rest API CURD Operation using Mysql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spring Boot, MySQL, JPA, Hibernate Rest API Tutorial

Build Restful CRUD API for a simple Note-Taking application using Spring Boot, Mysql, JPA and Hibernate.

Requirements

  1. Java - 1.8.x

  2. Maven - 3.x.x

  3. Mysql - 5.x.x

Steps to Setup

1. Clone the application

git clone https://github.com/Ravishankarcode/spring-boot-mysql-CURD-jpa-rest-api.git

2. Create Mysql database

create database test

3. Change mysql username and password as per your installation

  • open src/main/resources/application.properties

  • change spring.datasource.username and spring.datasource.password as per your mysql installation

4. Build and run the app using maven

mvn package
java -jar target/mysql-example-1.0.0.jar

Alternatively, you can run the app without packaging it using -

mvn spring-boot:run

The app will start running at http://localhost:8080.

Explore Rest APIs

The app defines following CRUD APIs.

GET /api/users

POST /api/users

GET /api/users/{firstname}

PUT /api/users/{firstname}

DELETE /api/users/{firstname}

You can test them using postman or any other rest client.

Learn more

You can find the tutorial for this application on my blog -

https://www.callicoder.com/spring-boot-rest-api-tutorial-with-mysql-jpa-hibernate/

About

Tutorial for Spring Boot Rest API CURD Operation using Mysql


Languages

Language:Java 100.0%