Bladeren bron

who knows

Seth 6 jaren geleden
bovenliggende
commit
46cfc2da90

+ 5
- 1
pom.xml Bestand weergeven

@@ -50,7 +50,11 @@
50 50
 			<artifactId>spring-data-commons</artifactId>
51 51
 			<version>1.13.10.RELEASE</version>
52 52
 		</dependency>
53
-	</dependencies>
53
+        <dependency>
54
+            <groupId>org.springframework.boot</groupId>
55
+            <artifactId>spring-boot-starter-data-jpa</artifactId>
56
+        </dependency>
57
+    </dependencies>
54 58
 
55 59
 	<build>
56 60
 		<plugins>

+ 2
- 0
src/main/java/com/zipcodewilmington/bakery/BakeryApplication.java Bestand weergeven

@@ -3,6 +3,8 @@ package com.zipcodewilmington.bakery;
3 3
 import org.springframework.boot.SpringApplication;
4 4
 import org.springframework.boot.autoconfigure.SpringBootApplication;
5 5
 
6
+import java.util.logging.Logger;
7
+
6 8
 @SpringBootApplication
7 9
 public class BakeryApplication {
8 10
 

+ 9
- 0
src/main/java/com/zipcodewilmington/bakery/Controllers/BakerController.java Bestand weergeven

@@ -2,25 +2,33 @@ 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 {
9 12
 
13
+    @Autowired
10 14
     private BakerRepository bakerRepository;
11 15
 
16
+    @GetMapping("/bakers")
12 17
     public ResponseEntity<Iterable<Baker>> index() {
13 18
         return new ResponseEntity<>(this.bakerRepository.findAll(), HttpStatus.OK);
14 19
     }
15 20
 
21
+    @GetMapping("/bakers")
16 22
     public ResponseEntity<Baker> show(Long id) {
17 23
         return new ResponseEntity<>(this.bakerRepository.findOne(id), HttpStatus.OK);
18 24
     }
19 25
 
26
+    @PostMapping("/bakers")
20 27
     public ResponseEntity<Baker> create(Baker baker) {
21 28
         return new ResponseEntity<>(this.bakerRepository.save(baker), HttpStatus.CREATED);
22 29
     }
23 30
 
31
+    @PutMapping("/bakers")
24 32
     public ResponseEntity<Baker> update(Long id, Baker baker) {
25 33
         Baker foundBaker = bakerRepository.findOne(id);
26 34
 
@@ -30,6 +38,7 @@ public class BakerController {
30 38
         return new ResponseEntity<>(this.bakerRepository.save(foundBaker), HttpStatus.OK);
31 39
     }
32 40
 
41
+    @DeleteMapping("/bakers")
33 42
     public ResponseEntity<Boolean> destroy(Long id) {
34 43
         this.bakerRepository.delete(id);
35 44
         return new ResponseEntity<>(true, HttpStatus.OK);

+ 10
- 0
src/main/java/com/zipcodewilmington/bakery/Controllers/MuffinController.java Bestand weergeven

@@ -2,25 +2,34 @@ package com.zipcodewilmington.bakery.Controllers;
2 2
 
3 3
 import com.zipcodewilmington.bakery.Models.Muffin;
4 4
 import com.zipcodewilmington.bakery.Repositories.MuffinRepository;
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 MuffinController {
9 12
 
13
+    @Autowired
10 14
     private MuffinRepository muffinRepository;
11 15
 
16
+
17
+    @GetMapping("/muffins")
12 18
     public ResponseEntity<Iterable<Muffin>> index() {
13 19
         return new ResponseEntity<>(this.muffinRepository.findAll(), HttpStatus.OK);
14 20
     }
15 21
 
22
+    @GetMapping("/muffins")
16 23
     public ResponseEntity<Muffin> show(Long id) {
17 24
         return new ResponseEntity<>(this.muffinRepository.findOne(id), HttpStatus.OK);
18 25
     }
19 26
 
27
+    @PostMapping("/muffins")
20 28
     public ResponseEntity<Muffin> create(Muffin muffin) {
21 29
         return new ResponseEntity<>(this.muffinRepository.save(muffin), HttpStatus.CREATED);
22 30
     }
23 31
 
32
+    @PutMapping("/muffins")
24 33
     public ResponseEntity<Muffin> update(Long id, Muffin muffin) {
25 34
         Muffin foundMuffin = muffinRepository.findOne(id);
26 35
         foundMuffin.setFlavor(muffin.getFlavor());
@@ -28,6 +37,7 @@ public class MuffinController {
28 37
         return new ResponseEntity<>(this.muffinRepository.save(foundMuffin), HttpStatus.OK);
29 38
     }
30 39
 
40
+    @DeleteMapping("/muffins")
31 41
     public ResponseEntity<Boolean> destroy(Long id) {
32 42
         this.muffinRepository.delete(id);
33 43
         return new ResponseEntity<>(true, HttpStatus.OK);

+ 5
- 0
src/main/java/com/zipcodewilmington/bakery/Models/Baker.java Bestand weergeven

@@ -1,6 +1,11 @@
1 1
 package com.zipcodewilmington.bakery.Models;
2 2
 
3
+import javax.persistence.Entity;
4
+import javax.persistence.Id;
5
+
6
+@Entity
3 7
 public class Baker {
8
+    @Id
4 9
     private Long id;
5 10
 
6 11
     private String name;

+ 8
- 0
src/main/java/com/zipcodewilmington/bakery/Models/Muffin.java Bestand weergeven

@@ -1,7 +1,15 @@
1 1
 package com.zipcodewilmington.bakery.Models;
2 2
 
3
+
4
+import javax.persistence.Entity;
5
+import javax.persistence.GeneratedValue;
6
+import javax.persistence.Id;
7
+
8
+@Entity
3 9
 public class Muffin {
4 10
 
11
+    @Id
12
+    @GeneratedValue
5 13
     private Long id;
6 14
 
7 15
     private String flavor;

+ 3
- 1
src/main/java/com/zipcodewilmington/bakery/Repositories/BakerRepository.java Bestand weergeven

@@ -2,6 +2,8 @@ package com.zipcodewilmington.bakery.Repositories;
2 2
 
3 3
 import com.zipcodewilmington.bakery.Models.Baker;
4 4
 import org.springframework.data.repository.CrudRepository;
5
+import org.springframework.stereotype.Repository;
5 6
 
6
-public interface BakerRepository extends CrudRepository<Baker, Long> {
7
+@Repository
8
+public interface BakerRepository extends CrudRepository<Baker, Long>{
7 9
 }

+ 2
- 0
src/main/java/com/zipcodewilmington/bakery/Repositories/MuffinRepository.java Bestand weergeven

@@ -2,6 +2,8 @@ package com.zipcodewilmington.bakery.Repositories;
2 2
 
3 3
 import com.zipcodewilmington.bakery.Models.Muffin;
4 4
 import org.springframework.data.repository.CrudRepository;
5
+import org.springframework.stereotype.Repository;
5 6
 
7
+@Repository
6 8
 public interface MuffinRepository extends CrudRepository<Muffin, Long> {
7 9
 }