spring boot routing examples

Solutions on MaxInterview for spring boot routing examples by the best coders in the world

showing results for - "spring boot routing examples"
Tatiana
21 Aug 2018
1@RestController
2public class OrderController {
3    @RequestMapping(value = "/customers/{cid}/orders/{oid}", method = GET)
4    public Order getOrder(@PathVariable int cid, @PathVariable int oid) {
5        ...
6    }
7}