InterviewSolution
Saved Bookmarks
| 1. |
How Can You Embed Variables In The Uri? |
|
Answer» Variables can be embedded within the URI syntax (CALLED URI path template). The variables are substituted at RUNTIME. Variables can be embedded within the URI syntax (called URI path template). The variables are substituted at runtime. @Path("/test/{username}") |
|