我是靠谱客的博主 光亮高山,最近开发中收集的这篇文章主要介绍RestTemplate 字段映射问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

RestTemplate 默认不开启驼峰式字段映射
需要通过jackson注解使用字段映射

restTemplate.postForEntity(uri, HttpEntity.EMPTY, responseType)

引入jackson pom

 <dependency>
     <groupId>com.fasterxml.jackson.core</groupId>
     <artifactId>jackson-annotations</artifactId>
 </dependency>

字段用上jackson注解 @JsonProperty

    @ApiModelProperty("accessToken")
    @JsonProperty("access_token")
    private String accessToken;

    @ApiModelProperty("tokenType")
    @JsonProperty("token_type")
    private String tokenType;

    @ApiModelProperty("refreshToken")
    @JsonProperty("refresh_token")
    private String refreshToken;

最后

以上就是光亮高山为你收集整理的RestTemplate 字段映射问题的全部内容,希望文章能够帮你解决RestTemplate 字段映射问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部