当前位置:   article > 正文

Spring Boot(三):RestTemplate提交表单数据的三种方法_resttemplate get form-data

resttemplate get form-data

http://blog.csdn.net/yiifaa/article/details/77939282

**********************************************

在REST接口的设计中,利用RestTemplate进行接口测试是种常见的方法,但在使用过程中,由于其方法参数众多,很多同学又混淆了表单提交与Payload提交方式的差别,而且接口设计与传统的浏览器使用的提交方式又有差异,经常出现各种各样的错误,如405错误,或者根本就得不到提交的数据,错误样例如下:

Exception in thread "main" org.springframework.web.client.HttpClientErrorException: 405 Method Not Allowed
    at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:63)
    at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:700)
    at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:653)
    at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:613)
    at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:531)

1. 用exchange方法提交

exchange既可以执行POST方法,还可以执行GET,所以应用最为广泛,使用方法如下:

  1. String url = "http://localhost/mirana-ee/app/login";
  2. RestTemplate client = new RestTemplate();
  3. HttpHeaders headers = new HttpHeaders();
  4. // 请勿轻易改变此提交方式,大部分的情况下,提交方式都是表单提交
  5. headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
  6. // 封装参数,千万不要替换为Map与HashMap,否则参数无法传递
  7. MultiValueMap<String, String> params= new LinkedMultiValueMap<String, String>();
  8. // 也支持中文
  9. params.add("username", "用户名");
  10. params.add("password", "123456");
  11. HttpEntity<MultiValueMap<String, String>> requestEntity = new HttpEntity<MultiValueMap<String, String>>(params, headers);
  12. // 执行HTTP请求
  13. ResponseEntity<String> response = client.exchange(url, HttpMethod.POST, requestEntity, String.class);
  14. // 输出结果
  15. System.out.println(response.getBody());

2. 用postForEntity进行提交

postForEntity是对exchange的简化,仅仅只需要减少HttpMethod.POST参数,如下:

  1. // 上面的代码完全一样
  2. // 仅需替换exchange方法
  3. ResponseEntity<String> response = client.postForEntity(url, requestEntity , String.class );

3. 关于表单提交与Payload提交的差异

在Controller的方法参数中,如果将“@ModelAttribute”改为“@RequestBody”注解,则此时的提交方式为Payload方式提交,详细的差异请参见《 $.ajax使用总结(一):Form提交与Payload提交》,代码示例如下:

  1. // 请注意@RequestBody注解
  2. @RequestMapping(value="/login", method=RequestMethod.POST, consumes="application/json")
  3. // 千万不要画蛇添足添加@ModelAttribute,否则会被其覆盖,如下
  4. // public Account getAccount(@RequestBody@ModelAttribute Account account)
  5. public Account getAccount(@RequestBody Account account) {
  6. account.setVersion(new Date());
  7. return account;
  8. }

再次强调一次,千万不要画蛇添足再次添加“@ModelAttribute”,因为其优先级比较高,所以系统会采用表单方式解析提交内容。

对于Payload方式,提交的内容一定要是String,且Header要设置为“application/json”,示例如下:

  1. // 请求地址
  2. String url = "http://localhost/mirana-ee/app/login";
  3. RestTemplate client = new RestTemplate();
  4. // 一定要设置header
  5. HttpHeaders headers = new HttpHeaders();
  6. headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
  7. // 将提交的数据转换为String
  8. // 最好通过bean注入的方式获取ObjectMapper
  9. ObjectMapper mapper = new ObjectMapper();
  10. Map<String, String> params= Maps.newHashMap();
  11. params.put("username", "国米");
  12. params.put("password", "123456");
  13. String value = mapper.writeValueAsString(params);
  14. HttpEntity<String> requestEntity = new HttpEntity<String>(value, headers);
  15. // 执行HTTP请求
  16. ResponseEntity<String> response = client.postForEntity(url, requestEntity , String.class );
  17. System.out.println(response.getBody());

如果内容不是以String方式提交,那么一定会出现以下错误:

Exception in thread "main" org.springframework.web.client.HttpClientErrorException: 400 Bad Request
    at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:63)
    at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:700)
    at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:653)
    at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:613)
    at org.springframework.web.client.RestTemplate.postForEntity(RestTemplate.java:407)

最后需要强调的是,通过@RequestBody是无法获取到请求参数,如将上面服务端的代码改为如下格式,则肯定得不到数据,但表单提交则相反。

  1. @RequestMapping(value="/login", consumes="application/json", method=RequestMethod.POST)
  2. public Account getAccount(@RequestBody Account account, HttpServletRequest request) {
  3. // 肯定得不到参数值
  4. System.out.println(request.getParameter("username"));
  5. account.setVersion(new Date());
  6. return account;
  7. }

4. HttpEntity的结构

HttpEntity是对HTTP请求的封装,包含两部分,header与body,header用于设置请求头,而body则用于设置请求体,所以其的构造器如下:

  1. // value为请求体
  2. // header为请求头
  3. HttpEntity<String> requestEntity = new HttpEntity<String>(value, headers);

5. HttpEntity与uriVariables

在RestTemplate的使用中,HttpEntity用于传递具体的参数值,而uriVariables则用于格式化Http地址,而不是地址参数,正确的用法如下:

  1. // 在地址中加入格式化参数path
  2. String url = "http://localhost/mirana-ee/app/{path}";
  3. // 准备格式化参数
  4. Map<String, String> varParams = Maps.newHashMap();
  5. varParams.put("path", "login");
  6. // 其他代码略
  7. // 格式化提交地址
  8. ResponseEntity<String> response = client.postForEntity(url, requestEntity , String.class, varParams);

6. 关于HttpMessageConverter的说明

在网上的很多例子中,我发现很多人为了处理Payload提交,都添加了自定义的HttpMessageConverter,如下:

  1. // 完全没有必要
  2. client.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
  3. client.getMessageConverters().add(new StringHttpMessageConverter());

然后,经过我查看源码与调试发现,RestTemplate内置了7种HttpMessageConverter,如下:
1. org.springframework.http.converter.ByteArrayHttpMessageConverter
2. org.springframework.http.converter.StringHttpMessageConverter
3. org.springframework.http.converter.ResourceHttpMessageConverter
4. org.springframework.http.converter.xml.SourceHttpMessageConverter
5. org.springframework.http.converter.support.AllEncompassingFormHttpMessageConverter
6. org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter
7. org.springframework.http.converter.json.MappingJackson2HttpMessageConverter
“`

结论

RestTemplate能大幅简化了提交表单数据的难度,并且附带了自动转换JSON数据的功能,但只有理解了HttpEntity的组成结构(header与body),且理解了与uriVariables之间的差异,才能真正掌握其用法。




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/303060
推荐阅读
相关标签
  

闽ICP备14008679号