Spring
Spring Boot | Restful API ์๋ฒ ๋ง๋ค๊ธฐ | Postman ํ
์คํธ
spring tool suite 4 ์ฌ์ฉ spring starter project ์์ฑ model ๋ง๋ค๊ธฐ UserProfile.java package com.newlecture.web.model; public class UserProfile { //์๋ฒ ์ดํ๋ฆฌ์ผ์ด์
๊ฐ๋ฐ์์๋ ๋ฉค๋ฒ๋ณ์๋ฅผ ๋ชจ๋ private๋ก ์ค์ ํ๊ณ ๋ฉค๋ฒ๋ณ์์ ๊ฐ์ ์ป๊ธฐ์ํ getter setter๋ฅผ ๋ง๋ ๋ค. private String id; private String name; private String phone; private String address; public UserProfile(String id, String name, String phone, String address) { super(); this.id = id; th..
2021. 5. 6. 14:31