- Building RESTful Web Services with Spring 5(Second Edition)
- Raja CSP Raman Ludovic Dewailly
- 45字
- 2021-06-30 19:13:31
Testing the endpoint – getUser
As we have finished out first API implementation, we can now test it by calling the following URI in the browser using the GET method:
http://localhost:8081/user/100
You should get the following result:
{
userid: 100,
username: "David"
}
推薦閱讀