configuration process추가
- GET
- 전체조회
- http://localhost:8090/member
- 개별조회
- http://localhost:8090/member/2
- POST방식
- http://localhost:8090/member
- {
"name" : "짱구18",
"id" : "1818",
"pw" : "1818"
}
- PUT방식
- http://localhost:8090/member
- {
"name" : "짱구18",
"pw" : "1818",
"mno" : 1
}
- DELETE방식
- http://localhost:8090/member/1
practice0801_RestApi.zip
0.09MB
'Spring > 이론' 카테고리의 다른 글
RestApi 명세서 사용하는 법// Swagger (0) | 2023.08.02 |
---|---|
다른 프로젝트에서 restapi 가져오기//CORS policy//@CrossOrigin (0) | 2023.08.02 |
REST/API/REST API/ RESTful/REST특징/REST URL 설계 규칙 (0) | 2023.07.31 |
delete방식-- 삭제할 때 사용//talend Api// (0) | 2023.07.31 |
put방식 -- 수정할 때 사용//talend Api//@RequestBody (0) | 2023.07.31 |