Build an API that looks up a single order. Find the order by its id and return its contents (item and quantity). Complete OrderService.getOrder. Note: respond to GET /orders/{id} with the order body and 200 OK.
Complete an API built on Spring Boot 3 and JPA (in-memory H2) that finds a single order by id and returns it. Looking up a stored order responds with 200 and a body (items and quantities).
An API that looks up a single resource by id is mainly about the flow where the controller and service split roles to receive the lookup result and send it out as a response. This problem completes a single lookup that finds one order by id and returns it with 200 and its body (items and quantities), and verifies in real code that a normal lookup returns the order.