我有一个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)
}
答案 0 :(得分:1)
您需要将您的网址编码为:
http://localhost:7001/Rest/GetInfo?type=J%26Y