참고 사이트에서 REST 서비스를 Spring을 이용해서 다뤄보자. JPA를 이용해서 mariaDB의 데이터 조작할 수 있는 컨트롤러 생성 PostMan을 이용해서 http요청을 통해 CRUD 데이터 조작하기 참고 사이트 아래의 HTTP is the Platform을 사용해보자. package payroll; import java.util.List; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springfr..