InterviewSolution
Saved Bookmarks
| 1. |
How Do You Annotate A Method To Respond To Http Get Requests? |
|
Answer» javax.ws.rs.GET ANNOTATION SPECIFIES that the ANNOTATED method will SERVE HTTP Get request. javax.ws.rs.Get annotation specifies that the annotated method will serve HTTP Get request. |
|