Skip to content

Commit 5724eb4

Browse files
author
Jörg-Christian Müller
committed
Project Lombok Constructors
1 parent 71f37d8 commit 5724eb4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)