码迷,mamicode.com
首页 > Web开发 > 详细

@JsonProperty的使用

时间:2018-04-10 10:55:14      阅读:1300      评论:0      收藏:0      [点我收藏+]

标签:分享   字符   log   阿里巴巴   string   enc   图片   value   技术分享   

jackson的maven依赖

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.5.3</version>
</dependency>


技术分享图片所以引入这一个依赖就可以了

@JsonProperty 此注解用于属性上,作用是把该属性的名称序列化为另外一个名称,

如把trueName属性序列化为name,@JsonProperty(value="name")。

 

import com.fasterxml.jackson.annotation.JsonProperty;

public class Student {

    @JsonProperty(value = "real_name")
    private String realName;


这里需要注意的是将对象转换成json字符串使用的方法是fasterxml.jackson提供的!!而不是使用阿里巴巴

 

的fastjson来实现的。

 

@JsonProperty的使用

标签:分享   字符   log   阿里巴巴   string   enc   图片   value   技术分享   

原文地址:https://www.cnblogs.com/feifeicui/p/8776273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!