【Java】 注解

@￰JsonProperty -> @JsonProperty注解

    Javaインスタンスのシリアライズ時のプロパティ名を指定する

请别在意我/我无意表示忽视你

    Jsonに含めたくないプロパティを指定する

示例代码

Java类

package annotations.naming;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

public class User {
  private Long id;

  @JsonProperty("firstName")
  private String name;

  @JsonIgnore
  private String password;

  public Long getId() {
    return this.id;
  }

  public void setId(Long id) {
    this.id = id;
  }

  public String getName() {
    return this.name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getPassword() {
    return this.password;
  }

  public void setPassword(String password) {
    this.password = password;
  }
}

Json (对于这个名词来说,也被称为JSON)

{
  "id" : 1,
  "firstName" : "Tom"
}
广告
将在 10 秒后关闭
bannerAds