Spring
Spring Boot | Restful API DB연동 | MySQL | MyBatis
kjh95.tistory.com/345 Spring Boot | Restful API 서버 만들기 | Postman 테스트 spring tool suite 4 사용 spring starter project 생성 model 만들기 UserProfile.java package com.newlecture.web.model; public class UserProfile { //서버 어플리케이션 개발에서는 멤버변수를 모두 priva.. kjh95.tistory.com MySQL에 있는 DB정보를 연동하여 저장, 조회, 수정, 삭제 테이블 만들기 create table UserProfile ( id varchar(64) primary key, name varchar(64), phone varchar(64), add..
2021. 5. 7. 14:51