himash79 /
Spring-boot-MYSQL-Rest-API-CRUD
Build Restful web services using spring boot and MYSQL and Hibernate as well as End-points authenticate with JWT authentication.
Loading repository data…
Priyanshu23565 / repository
Build Restful CRUD API for a simple Note-Taking application using Spring Boot, Mysql, JPA and Hibernate. Requirment : Java - 1.8.x Maven - 3.x.x Mysql - 5.x.x
Build Restful CRUD API for a simple Note-Taking application using Spring Boot, Mysql, JPA and Hibernate. Requirment : Java - 1.8.x Maven - 3.x.x Mysql - 5.x.x
Steps to Setup
git clone https://github.com/callicoder/spring-boot-mysql-rest-api-tutorial.git 2. Create Mysql database
create database notes_app 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
mvn package java -jar target/easy-notes-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/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/
Selected from shared topics, language and repository description—not editorial ratings.
himash79 /
Build Restful web services using spring boot and MYSQL and Hibernate as well as End-points authenticate with JWT authentication.
ErVishal95 /
Java Restful Web Service JAXRS CRUD Example Using Jersey and Maven build
lavanaya14 /
A Todo application is a basic CRUD (Create, Read, Update, Delete) app where users can manage their daily tasks. It helps you understand how to build a RESTful API using Node.js, interact with a MongoDB database, and perform backend logic with JavaScript.
:fish: # JavaLite é uma coleção de estruturas para simplificar tarefas comuns com as quais todo desenvolvedor deve lidar ao construir aplicativos. Neste tutorial, vamos dar uma olhada nos recursos JavaLite focados na construção de uma API simples
fernandobecker /
Build Restful CRUD API for a simple bank application using Spring Boot, H2 and JPA.
fernandobecker /
Build Restful CRUD API for a simple farm application using Spring Boot, Postgres and JPA.