Skip to content

johnnyaustor/rest-api-spring-boot-101

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rest API Spring Boot 101

Required

name link
JDK 11 link download JDK11
MAVEN link download maven

Initial Project

kunjungi web start.spring.io untuk membuat project baru, atau bisa menggunakan IDE IntelliJIdea Ultimate

Pom Dependency

  • Spring Web
  • Spring Data JPA
  • H2 Database / MySQL / PostgreSQL
  • Lombok

Running Script

$ mvn clean install

$ mvn spring-boot:run

Branch

  • Master Initial Project
  • 100Config Init Configuration
  • 101Post Init Create Data
  • 102GetList Init Get List
  • 103GetDetail Init Get Detail
  • 104Patch Init Update Data
  • 105Delete Init Delete Data