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
-
Java - 1.8.x
-
Maven - 3.x.x
-
Mysql - 5.x.x
Steps to Setup
1. Clone the application
git clone https://github.com/callicoder/spring-boot-mysql-rest-api-tutorial.git2. Create Mysql database
create database notes_app3. Change mysql username and password as per your installation
-
open
src/main/resources/application.properties -
change
spring.datasource.usernameandspring.datasource.passwordas per your mysql installation
4. Build and run the app using maven
mvn package
java -jar target/easy-notes-1.0.0.jarAlternatively, you can run the app without packaging it using -
mvn spring-boot:runThe app will start running at http://localhost:8080.
Explore Rest APIs
The app defines following CRUD APIs.
GET /api/notes
POST /api/notes
GET /api/notes/{noteId}
PUT /api/notes/{noteId}
DELETE /api/notes/{noteId}
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/

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
