We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f37d8 commit 5724eb4Copy full SHA for 5724eb4
src/main/java/guru/springframework/spring6restmvc/controller/BeerController.java
@@ -0,0 +1,15 @@
1
+package guru.springframework.spring6restmvc.controller;
2
+
3
+import guru.springframework.spring6restmvc.services.BeerService;
4
+import lombok.AllArgsConstructor;
5
+import org.springframework.stereotype.Controller;
6
7
+/**
8
+ * Created by jt, Spring Framework Guru.
9
+ */
10
+@AllArgsConstructor
11
+@Controller
12
+public class BeerController {
13
+ private final BeerService beerService;
14
15
+}
0 commit comments