Spring Boot - REST Controllers
Given the controller below, what URL path will trigger the
getDetails() method? @RestController
@RequestMapping("/orders")
public class OrderController {
@RequestMapping("/details")
public String getDetails() { return "Order Details"; }
}