| 17 | |
| 18 | // @Repository stereotype — Spring-managed bean |
| 19 | @Repository |
| 20 | class JpaOrderRepository implements OrderRepository { |
| 21 | @Override |
| 22 | public void save(Order order) {} |
| 23 | |
| 24 | @Override |
| 25 | public Order findById(Long id) { return null; } |
| 26 | } |
| 27 | |
| 28 | // @Service with @Autowired field injection |
| 29 | @Service |
nothing calls this directly
no outgoing calls
no test coverage detected