@RestController
@RequestMapping("user")
public class RestFullController {
@GetMapping
public User get(){
User user = new User(1,"2wa","man",9);
return user;
}
@GetMapping("{id}")
public User getById(@PathVariable("id") int id){
User user = new User(id,"3wa","woman",9);
return user;
}
}