如何通过和阅读&在@QueryParam Jax-RS中

时间:2014-02-14 00:48:46

标签: jersey jax-rs query-parameters

我有一个Rest服务接受QueryParam,值为&在它中,我如何传递它并接受它作为查询参数。

这里我附上我使用的来源。

我打电话给同样的人
http://localhost:7001/Rest/GetInfo?type=J&Y
as & is the seperator its taking only till J.
if i use "\" then its not working.
http://localhost:7001/Rest/GetInfo?type=J\&Y

    I am deploying on Weblogic.

    @GET
    @Path("/GetInfo")
    //@Produces("text/javascript")
    @Produces("application/json")
    public String getInfo(@QueryParam("type") String type)
    {
            // i am reading the type here
            if(type != null
                getUserType(type)
    }

1 个答案:

答案 0 :(得分:1)

您需要将您的网址编码为: http://localhost:7001/Rest/GetInfo?type=J%26Y