-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathCustomerController.java
63 lines (49 loc) · 2.31 KB
/
CustomerController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.programmers.springbootjpa.controller;
import com.programmers.springbootjpa.dto.request.CustomerCreateRequest;
import com.programmers.springbootjpa.dto.request.CustomerUpdateRequest;
import com.programmers.springbootjpa.dto.response.CustomerResponse;
import com.programmers.springbootjpa.service.CustomerService;
import jakarta.validation.Valid;
import java.util.List;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RequestMapping("/api/customers")
@RequiredArgsConstructor
@RestController
public class CustomerController {
private final CustomerService customerService;
@PostMapping
public ResponseEntity<Void> createCustomer(@Valid @RequestBody CustomerCreateRequest customerCreateRequest) {
customerService.createCustomer(customerCreateRequest);
return ResponseEntity.status(HttpStatus.CREATED).body(null);
}
@GetMapping("/{id}")
public ResponseEntity<CustomerResponse> readCustomer(@PathVariable Long id) {
CustomerResponse customerResponse = customerService.readCustomer(id);
return ResponseEntity.ok(customerResponse);
}
@GetMapping
public ResponseEntity<List<CustomerResponse>> readAllCustomer() {
List<CustomerResponse> customerResponses = customerService.readAllCustomer();
return ResponseEntity.ok(customerResponses);
}
@PatchMapping
public ResponseEntity<Void> updateCustomer(@Valid @RequestBody CustomerUpdateRequest customerUpdateRequest) {
customerService.updateCustomer(customerUpdateRequest);
return ResponseEntity.ok(null);
}
@DeleteMapping("/{id}")
public ResponseEntity<Void> deleteCustomer(@PathVariable Long id) {
customerService.deleteCustomer(id);
return ResponseEntity.noContent().build();
}
}