shubhangi-1 / spring-boot-rest-api-tutorial

Sample REST CRUD API with Spring Boot, Mysql, JPA and Hibernate

Home Page:https://www.prathapgivantha.wordpress.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Known Vulnerabilities

Sample REST CRUD API with Spring Boot, Mysql, JPA and Hibernate

Steps to Setup

1. Clone the application

https://github.com/givanthak/spring-boot-rest-api-tutorial.git

2. Create Mysql database

create database user_database

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/spring-boot-rest-api-tutorial-0.0.1-SNAPSHOT.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/v1/users

POST /api/v1/users

GET /api/v1/users/{userId}

PUT /api/v1/users/{userId}

DELETE /api/v1/users/{userId}

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

https://www.prathapgivantha.wordpress.com

About

Sample REST CRUD API with Spring Boot, Mysql, JPA and Hibernate

https://www.prathapgivantha.wordpress.com

License:Apache License 2.0


Languages

Language:Java 100.0%