|
@@ -2,25 +2,37 @@ 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.web.bind.annotation.*;
|
7
|
9
|
|
|
10
|
+@RestController
|
8
|
11
|
public class BakerController {
|
|
12
|
+
|
|
13
|
+ public BakerController() {
|
|
14
|
+ }
|
|
15
|
+
|
|
16
|
+ @Autowired
|
9
|
17
|
private BakerRepository bakerRepository;
|
10
|
18
|
|
|
19
|
+ @RequestMapping(value = "/bakers", method = RequestMethod.GET)
|
11
|
20
|
public ResponseEntity<Iterable<Baker>> index() {
|
12
|
21
|
return new ResponseEntity<>(this.bakerRepository.findAll(), HttpStatus.OK);
|
13
|
22
|
}
|
14
|
23
|
|
15
|
|
- public ResponseEntity<Baker> show(Long id) {
|
|
24
|
+ @RequestMapping( value = "/bakers/{id}", method = RequestMethod.GET)
|
|
25
|
+ public ResponseEntity<Baker> show(@PathVariable Long id) {
|
16
|
26
|
return new ResponseEntity<>(this.bakerRepository.findById(id).get(), HttpStatus.OK);
|
17
|
27
|
}
|
18
|
28
|
|
19
|
|
- public ResponseEntity<Baker> create(Baker baker) {
|
|
29
|
+ @RequestMapping(value = "/bakers", method = RequestMethod.POST)
|
|
30
|
+ public ResponseEntity<Baker> create(@RequestBody Baker baker) {
|
20
|
31
|
return new ResponseEntity<>(this.bakerRepository.save(baker), HttpStatus.CREATED);
|
21
|
32
|
}
|
22
|
33
|
|
23
|
|
- public ResponseEntity<Baker> update(Long id, Baker baker) {
|
|
34
|
+ @PutMapping(path = "/bakers/{id}")
|
|
35
|
+ public ResponseEntity<Baker> update(@PathVariable Long id, @RequestBody Baker baker) {
|
24
|
36
|
Baker foundBaker = bakerRepository.findById(id).get();
|
25
|
37
|
|
26
|
38
|
foundBaker.setName(baker.getName());
|
|
@@ -28,8 +40,8 @@ public class BakerController {
|
28
|
40
|
|
29
|
41
|
return new ResponseEntity<>(this.bakerRepository.save(foundBaker), HttpStatus.OK);
|
30
|
42
|
}
|
31
|
|
-
|
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
|
}
|