|
@@ -2,25 +2,36 @@ package com.zipcodewilmington.bakery.Controllers;
|
2
|
2
|
|
3
|
3
|
import com.zipcodewilmington.bakery.Models.Baker;
|
4
|
4
|
import com.zipcodewilmington.bakery.Repositories.BakerRepository;
|
|
5
|
+import org.springframework.beans.factory.annotation.Autowired;
|
5
|
6
|
import org.springframework.http.HttpStatus;
|
6
|
7
|
import org.springframework.http.ResponseEntity;
|
|
8
|
+import org.springframework.stereotype.Controller;
|
|
9
|
+import org.springframework.web.bind.annotation.*;
|
7
|
10
|
|
|
11
|
+@RestController
|
8
|
12
|
public class BakerController {
|
|
13
|
+
|
|
14
|
+ @Autowired
|
9
|
15
|
private BakerRepository bakerRepository;
|
10
|
16
|
|
|
17
|
+
|
|
18
|
+ @GetMapping(path = "/bakers")
|
11
|
19
|
public ResponseEntity<Iterable<Baker>> index() {
|
12
|
20
|
return new ResponseEntity<>(this.bakerRepository.findAll(), HttpStatus.OK);
|
13
|
21
|
}
|
14
|
22
|
|
15
|
|
- public ResponseEntity<Baker> show(Long id) {
|
|
23
|
+ @GetMapping(path = "/bakers/{id}")
|
|
24
|
+ public ResponseEntity<Baker> show(@PathVariable Long id) {
|
16
|
25
|
return new ResponseEntity<>(this.bakerRepository.findById(id).get(), HttpStatus.OK);
|
17
|
26
|
}
|
18
|
27
|
|
|
28
|
+ @PostMapping(path = "/bakers")
|
19
|
29
|
public ResponseEntity<Baker> create(Baker baker) {
|
20
|
30
|
return new ResponseEntity<>(this.bakerRepository.save(baker), HttpStatus.CREATED);
|
21
|
31
|
}
|
22
|
32
|
|
23
|
|
- public ResponseEntity<Baker> update(Long id, Baker baker) {
|
|
33
|
+ @PutMapping(path = "/bakers/{id}")
|
|
34
|
+ public ResponseEntity<Baker> update(@PathVariable Long id, Baker baker) {
|
24
|
35
|
Baker foundBaker = bakerRepository.findById(id).get();
|
25
|
36
|
|
26
|
37
|
foundBaker.setName(baker.getName());
|
|
@@ -29,7 +40,8 @@ public class BakerController {
|
29
|
40
|
return new ResponseEntity<>(this.bakerRepository.save(foundBaker), HttpStatus.OK);
|
30
|
41
|
}
|
31
|
42
|
|
32
|
|
- public ResponseEntity<Boolean> destroy(Long id) {
|
|
43
|
+ @DeleteMapping(path = "/bakers/{id}")
|
|
44
|
+ public ResponseEntity<Boolean> destroy(@PathVariable Long id) {
|
33
|
45
|
this.bakerRepository.findById(id).get();
|
34
|
46
|
return new ResponseEntity<>(true, HttpStatus.OK);
|
35
|
47
|
}
|