当前位置 主页 > 网站技术 > 代码类 >

    JsonProperty 的使用方法详解

    栏目:代码类 时间:2019-10-30 15:04

    这篇文章主要介绍了JsonProperty 的使用方法详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

    引入 依赖

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

    如果在springboot中 spring-boot-starter-web 包含了 此依赖

    @JsonProperty 此注解用于属性上,作用是把该属性的名称序列化为另外一个名称,如把trueName属性序列化为name,@JsonProperty("name")。

    @JsonProperty("name") 
      private String trueName; 
      
      public String getTrueName() { 
        return trueName; 
      } 
      
      public void setTrueName(String trueName) { 
        this.trueName = trueName; 
      }

    使用这个注解,后端可以获取到前端与注解中同名的属性 ,后端以注解中的属性名返回给前端

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持IIS7站长之家。