Making Updates Persistent
Learn how to make the edit changes permanent in the players' rows.
We'll cover the following...
Updating team controller
We can’t add or remove rows yet, but we can edit the values of each player via the rows that are rendered by Thymeleaf on the server. To make those edits persistent, we need to update TeamController.doEditTeam()
. The controller currently looks ...