A REST API where users can perform CRUD operations on a player object.
- Get the details of all the players (GET Request)
localhost:8080/players
- Get a player by ID (GET Request)
localhost:8080/player/{pId}
- Add a new player (POST Request)
localhost:8080/player/add
- Update the details of an existing player by ID (PUT Request)
localhost:8080/player/{pId}/update
- Delete a player by ID (DELETE Request)
localhost:8080/player/{pId}/delete