Проходя карту в GET, JAVA
Как передать пары "Карта значений ключей" в GET REST API,
Вот вызов ресурса.. Я получаю метод не допускается
String queryMap= String.format("{'softwareversion':'%s','peril':'%s','analysistype':'%s', 'region':'%s'}", "HD18", "Flood", "EP", "USFL");
String url = String.format("http://localhost:%d/templates/modelprofile?queryMap=%s", API_APPLICATION_RULE.getLocalPort(),queryMap);
Response response = ClientBuilder.newClient()
.target(url)
.request()
.header("Authorization", getToken())
.get();
У меня есть ресурс, как показано ниже
@GET
@Path("/{templateType}")
@Timed
@Produces(MediaType.APPLICATION_JSON)
@ApiOperation(value = "Get templates based on peril/region,version and type",
httpMethod = ApiConstants.GET)
@ApiResponses(value = {
@ApiResponse(code = ApiConstants.INT_200,
message = "TemplateReader was retrieved successfully from the database."),
@ApiResponse(code = ApiConstants.INT_400,
message = "Bad request (wrong or missing inputs)"),
@ApiResponse(code = ApiConstants.INT_500,
message = ApiConstants.INTERNAL_SERVER_ERROR)
})
public Template getTemplate(@ApiParam(hidden = true) @Auth User user,
@ApiParam(name = "templateType", value = "templateType")
@PathParam("templateType") String templateType,
@ApiParam(name = "queryMap", value = "queryMap")
@RequestParameters Map<String,String> queryMap
) throws ApiException
1 ответ
Вы можете передать его, используя параметр запроса, как показано ниже.
@RequestMapping(name = "/url/", method = RequestMethod.GET)
public void method_name(@RequestParam(name = "map_name")Map<String, Object> requestMap){
//Process map and perform your logic
}