这是我需要提供给RESTTemplate的网址。
http://myurl.com/items?select=itemCode,itemType,code&criteria={"uniquecriteriaId":"2055"}
我需要用用户发送的内容替换2055.问题是我无法正确编码URL,因为它有花括号,故意双引号。如何构造此URL以将其正确输入到RestTemplate。让我们说用户为" 2055"上面的内容存储在
中String id="2055";
我的RestTemplate查询看起来像这样
rt.getForEntity(url, List.class);