使用没有请求对象的hibernate从URL获取参数值?

时间:2013-09-02 13:18:13

标签: java hibernate

网址类型为: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
}

1 个答案:

答案 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 }}