首頁 > Java > java教程 > 主體

如何使用Jackson在Java中為欄位定義替代名稱?

王林
發布: 2023-08-27 13:49:05
轉載
799 人瀏覽過

如何使用Jackson在Java中為欄位定義替代名稱?

@JsonAlias註解可以為反序列化過程中接受的屬性定義一個或多個備用名稱,設定JSON資料到一個Java對象。但當序列化時,即從 Java 物件取得 JSON,僅使用實際的邏輯屬性名稱,而不是 alias

Syntax

<strong>@Target(value={ANNOTATION_TYPE,FIELD,METHOD,PARAMETER})
@Retention(value=RUNTIME)
public @interface JsonAlias</strong>
登入後複製

Example

的中文翻譯為:

範例

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
import java.io.*;
public class ObjectToJsonTest {
   public static void main(String[] args) throws JsonProcessingException {
      <strong>ObjectMapper </strong>mapper = new <strong>ObjectMapper()</strong>;
      Technology tech = new Technology("Java", "Oracle");
      Employee emp = new Employee(110, "Raja", tech);
      String jsonWriter = mapper.<strong>writerWithDefaultPrettyPrinter().writeValueAsString(emp);</strong>
      System.out.println(jsonWriter);
   }
}
<strong>// Technology class
</strong>class Technology {
<strong>   @JsonProperty("skill")
</strong>   private String skill;
<strong>   @JsonProperty("subSkill")
</strong><strong>   @JsonAlias({"sSkill", "mySubSkill"})
</strong>   private String subSkill;
   public Technology(){}
   public Technology(String skill, String subSkill) {
      this.skill = skill;
      this.subSkill = subSkill;
   }
   public String getSkill() {
      return skill;
   }
   public void setSkill(String skill) {
      this.skill = skill;
   }
   public String getSubSkill() {
      return subSkill;
   }
   public void setSubSkill(String subSkill) {
      this.subSkill = subSkill;
   }
}
<strong>// Employee class
</strong>class Employee {
<strong>   @JsonProperty("empId")
</strong>   private Integer id;
<strong>   @JsonProperty("empName")
</strong><strong>   @JsonAlias({"ename", "myename"})
</strong>   private String name;
<strong>   @JsonProperty("empTechnology")
</strong>   private Technology tech;
   public Employee(){}
   public Employee(Integer id, String name, Technology tech){
      this.id = id;
      this.name = name;
      this.tech = tech;
   }
   public Integer getId() {
      return id;
   }
   public void setId(Integer id) {
      this.id = id;
   }
   public String getName() {
      return name;
   }
   public void setName(String name) {
      this.name = name;
   }
   public Technology getTechnology() {
      return tech;
   }
   public void setTechnology(Technology tech) {
      this.tech = tech;
   }
}
登入後複製

輸出

<strong>{
 "technology" : {
 "skill" : "Java",
 "subSkill" : "Oracle"
 },
 "empId" : 110,
 "empName" : "Raja",
 "empTechnology" : {
 "skill" : "Java",
 "subSkill" : "Oracle"
 }
}</strong>
登入後複製

以上是如何使用Jackson在Java中為欄位定義替代名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!