(Long orderId)
| 32 | private OrderRepository orderRepository; |
| 33 | |
| 34 | public void notify(Long orderId) { |
| 35 | Order o = orderRepository.findById(orderId); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | // @Service with Lombok @RequiredArgsConstructor (constructor injection via final fields) |