- Notifications
You must be signed in to change notification settings - Fork36
Build a Restful API with Kotlin, Spring Boot, Mysql, Jpa and Hibernate
callicoder/kotlin-spring-boot-jpa-rest-api-demo
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Build a Restful CRUD API using Kotlin, Spring Boot, Mysql, JPA and Hibernate.
Java - 11
Maven - 3.x.x
Mysql - 5.x.x
1. Clone the application
git clone https://github.com/callicoder/kotlin-spring-boot-jpa-rest-api-demo.git
2. Create Mysql database
create database kotlin_demo_app
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
4. Running the App
Type the following command in your terminal to run the app -
mvn spring-boot:run
The app will start running athttp://localhost:8080.
The app defines following CRUD APIs.
GET /api/articlesPOST /api/articlesGET /api/articles/{id}PUT /api/articles/{id}DELETE /api/articles/{id}
You can test them using postman or any other rest client.
You can find the tutorial for this application on my blog -
https://www.callicoder.com/kotlin-spring-boot-mysql-jpa-hibernate-rest-api-tutorial/
About
Build a Restful API with Kotlin, Spring Boot, Mysql, Jpa and Hibernate
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.