RestTemplate的异常 Not enough variables available to expand

Posted eternityz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RestTemplate的异常 Not enough variables available to expand相关的知识,希望对你有一定的参考价值。

当使用 RestTemplate 可能会遇到异常:

Not enough variables available to expand

典型如下:

@Autowired
private RestTemplate restTemplate;

String url = "http://localhost:8080/search?people={"name":"jack","age":18}";

String email = restTemplate.getForObject(url, String.class);

这样使用,会出现如下报错信息:

Exception in thread "main" java.lang.IllegalArgumentException: Not enough variable values available to expand '"name"'

这个地方很令人费解,难道不能这样使用?经过一顿查找,发现原来是因为。。。

url因为本身的原因,把花括号 { } 中的内容当成了占位符,而这里又没有明确说明占位符对应的值,所以会导致报错。

只需要简单几步即可解决。在url中使用占位符,将占位符的值即所传 json 放在第3个参数位置。
如下:

String json = {""name":"jack","age":18"};
String url = "http://localhost:8080/search?people={json}";
String email = restTemplate.getForObject(url, String.class, json);

这样处理之后,就可以正常使用了。

参考:

原文:https://blog.csdn.net/ezreal_king/article/details/72654440

以上是关于RestTemplate的异常 Not enough variables available to expand的主要内容,如果未能解决你的问题,请参考以下文章

使用 RestTemplate 在循环中处理异常

自定义 RestTemplate 异常处理 (转)

Spring Resttemplate 异常处理

A component required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be

RestTemplate请求Could not extract response: no suitable HttpMessageConverter found for response type..

使用RestTemplate请求,报java.lang.IllegalStateException: No instances avaliable for ip地址 异常