网址类型为:http://localhost:8080/mdnd_myshelfService_V1.0/myshelf/authenticateUserAndGetHospitalDetails?username=85010352:password=asddddsad2342#$
在控制器类中,将使用以下方法对用户名进行身份验证和获取医院数据。
@GET
@Path("/authenticateUserAndGetHospitalDetails")
//@path is not complete should be something like /authenticateUserAndGetHospitalDetails?{username}:{password}
@Produces(MediaType.APPLICATION_JSON)
public Hospital getAllHospitalData(@PathParam("userId") String userId) {
log.error("in getAllHospitalData.. " + userId + " | " );
//need to get parameter values of username and password from url
}
答案 0 :(得分:1)
您可以使用@QueryParam
注释。
@GET
@Path("/authenticateUserAndGetHospitalDetails")
@Produces(MediaType.APPLICATION_JSON)
public Hospital getAllHospitalData(@PathParam("userId") String userId, @QueryParam("password") String password, @QueryParam("username") String username) {
...
这会将url参数绑定到相应的方法参数。有一个像
的网址http://localhost:8080/mdnd_myshelfService_V1.0/myshelf/authenticateUserAndGetHospitalDetails?username=85010352:password=asddddsad2342#$
假设您的Web服务器接受:
作为参数分隔符,则变量username
将具有值85010352
,变量password
将具有值{{1 }}