Mapping Controller Variables
Path Variables
https://localhost:8080/users/John@GetMapping(path="/{name}")
public final Employee getEmployee()@GetMapping(path="/{name:[A-Za-z0-9]*}")
public final Employee getEmployee()@RestController
@RequestMapping(value = "/users/{name}/")
public class EmployeeControllerPath Variables to Arguments
@GetMapping(path="/{name}", produces = MediaType.APPLICATION_JSON_VALUE)
public final Employee getEmployee(@PathVariable final String name)Path Variables to Objects
Request Parameters
Body Content
Last updated