我正在制作REST客户端,它使用数据作为查询过滤器来检索POST。
我的问题是客户端向我发送“%”以搜索所有值时。

球衣给我发以下错误

11:36:35,857 ERROR [Jersey REST Service]:260 - Servlet.service() for servlet Jersey REST Service threw exception
java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "%ip%"


产生此错误的代码是:

@POST
    @Path("/Comercial/{campo}")
    @Produces("application/json; charset=utf-8")
    public static Response findAll(
                @PathParam(value = "campo") String campo,
                @FormParam("filtro") String filtro){

        Object resposta = null;

        resposta = new JSONArray();
        campo = campo.substring(7);
        resposta = SequenciaControl.findDataByTable(campo,filtro);

        return Retorno.send(resposta);
    }


如果我使用@QueryParam作为GET进行接收,则此方法有效,但我需要将此作为POST

谢谢!

最佳答案

作为请求发送时,必须使用%25对百分比进行转义。

所以"%ip%"应该是"%25ip%25"

10-01 02:56