Using HTTP Methods for Restfulservice(post,get,put,delete)
1. post : 새로운 아이디 생성 2. get : 정보 조회 3. put : 정보 업데이트 4. delete : 정보 삭제 HTTP Verb CRUD Entire Collection (e.g. /customers) Specific Item (e.g. /customers/{id}) POST Create 201 (Created), 'Location' header with link to /customers/{id} containing new ID. 404 (Not Found), 409 (Conflict) if resource already exists.. GET Read 200 (OK), list of customers. Use pagination, sorting and filtering to naviga..
Developer/spring framework
2015. 8. 4. 15:22