Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
@PutMapping("/programmeurs/{id}")
public Programmeur modifier(@PathVariable Integer id, @RequestBody Programmeur in) { /* ... */ }
public Programmeur modifier(@PathVariable("code") Integer id, @RequestBody Programmeur in) { /* ... */ }
@PutMapping("/programmeurs")
public Programmeur modifier(@RequestBody Programmeur in) { /* ... */ }
public Programmeur modifier(@RequestParam Integer id, @RequestBody Programmeur in) { /* ... */ }
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!