Build Restful CRUD API for the COCKPIT-API application using Spring Boot, Mysql, JPA and Hibernate.
-
Java - 1.8.x
-
Maven - 3.x.x
-
Mysql - 5.x.x
1. Clone the application
2. Create Mysql database
create database cockpit
3. Change mysql username and password as per your installation
-
open
src/main/resources/application.properties
-
change
spring.datasource.username
andspring.datasource.password
as per your mysql installation
2. Build and run the app using maven
mvn package
java -jar target/cockpit-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.
The app defines following CRUD APIs.
GET /api/customers
POST /api/customers
GET /api/customers/{noteId}
PUT /api/customers/{noteId}
DELETE /api/customers/{noteId}
You can test them using postman or any other rest client.