我正在使用 Urinfo 访问我的 restful web 服务中的查询参数,如下所示
@GET
@Produces("text/plain")
@Path("/association")
public Response Association(
@Context UriInfo uriInfo){
String clinicianId = uriInfo.getQueryParameters().getFirst("clinicianId");
List<String> providerList = uriInfo.getQueryParameters().get("clinicialProviderId");
如何使用 uriinfo访问PUT方法的参数。