真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot中怎么反序列化子類

本篇文章給大家分享的是有關(guān)SpringBoot中怎么反序列化子類,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)建站是專業(yè)的南丹網(wǎng)站建設(shè)公司,南丹接單;提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行南丹網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!

目標(biāo)

在SpringBoot接口中,我們一般用@RequestBody類注解需要反序列化的對象,但是當(dāng)存在多個子類的情況下,常規(guī)的反序列化不能滿足需求,比如:

我們有一個類Exam用于表示一張試卷:

@Datapublic class Exam { private String name; private List questions;}

這里Question比較特殊,Question本身是一個抽象類,提供了一些通用的方法調(diào)用,實(shí)際子類有單選題、多選題、判斷題多種情況

實(shí)現(xiàn)

SprintBoot內(nèi)置的序列化是使用的Jackson,查閱文檔后發(fā)現(xiàn)Jackson提供了@JsonTypeInfo和@JsonSubTypes這兩個注解,搭配使用,可以根據(jù)指定的字段值來指定實(shí)例化中用到的具體的子類類型

這幾個類的實(shí)際代碼如下:

抽象基類Question:

@Data@JsonTypeInfo(  use = JsonTypeInfo.Id.NAME,  include = JsonTypeInfo.As.EXISTING_PROPERTY,  property = "type",  visible = true)@JsonSubTypes({  @JsonSubTypes.Type(value = SingleChoiceQuestion.class, name = Question.SINGLE_CHOICE),  @JsonSubTypes.Type(value = MultipleChoiceQuestion.class, name = Question.MULTIPLE_CHOICE),  @JsonSubTypes.Type(value = TrueOrFalseQuestion.class, name = Question.TRUE_OR_FALSE),})public abstract class Question { protected static final String SINGLE_CHOICE = "single_choice"; protected static final String MULTIPLE_CHOICE = "multiple_choice"; protected static final String TRUE_OR_FALSE = "true_or_false"; protected String type; protected String content; protected String answer; protected boolean isCorrect(String answer) {  return this.answer.equals(answer); }}

判斷題TrueOrFalseQuestion:

@Data@EqualsAndHashCode(callSuper = true)public class TrueOrFalseQuestion extends Question {  public TrueOrFalseQuestion() {    this.type = TRUE_OR_FALSE;  }}

選擇題ChoiceQuestion:

@Data@EqualsAndHashCode(callSuper = true)public abstract class ChoiceQuestion extends Question {  private List

單選題SingleChoiceQuestion:

@Data@EqualsAndHashCode(callSuper = true)public class SingleChoiceQuestion extends ChoiceQuestion {  public SingleChoiceQuestion() {    this.type = SINGLE_CHOICE;  }}

多選題MultipleChoiceQuestion:

@Data@EqualsAndHashCode(callSuper = true)public class MultipleChoiceQuestion extends ChoiceQuestion {  public MultipleChoiceQuestion() {    this.type = MULTIPLE_CHOICE;  }  @Override  public void setAnswer(String answer) {    this.answer = sortString(answer);  }  @Override  public boolean isCorrect(String answer) {    return this.answer.equals(sortString(answer));  }  private String sortString(String str) {    char[] chars = str.toCharArray();    Arrays.sort(chars);    return String.valueOf(chars);  }}

測試

接下來測試一下

定義一個接口,我們可以使用@RequestBody傳入一個Exam對象,返回解析結(jié)果:

@RequestMapping(value = "/exam", method = RequestMethod.POST)public List parseExam(@RequestBody Exam exam) {  List results = new ArrayList<>();  results.add(String.format("Parsed an exam, name = %s", exam.getName()));  results.add(String.format("Exam has %s questions", exam.getQuestions().size()))     List types = new ArrayList<>();  for (Question question : exam.getQuestions()) {    types.add(question.getType());  }  results.add(String.format("Questions types: %s", types.toString()));  return results;}

項目跑起來,調(diào)用接口測試一下:

curl -X POST \ http://127.0.0.1:8080/exam/ \ -H 'Content-Type: application/json' \ -d '{  "name":"一場考試",  "questions": [    {      "type": "single_choice",      "content": "單選題",      "options": [        {          "code":"A",          "content": "選項A"        },{          "code":"B",          "content": "選項B"        }],      "answer": "A"    },{      "type": "multiple_choice",      "content": "多選題",      "options": [        {          "code":"A",          "content": "選項A"        },{          "code":"B",          "content": "選項B"        }],      "answer": "AB"    },{      "type": "true_or_false",      "content": "判斷題",      "answer": "True"    }]}'

接口返回如下:

[  "Parsed an exam, name = 一場考試",  "Exam has 3 questions",  "Questions types: [single_choice, multiple_choice, true_or_false]"]

這里不同類型的question,type字段都能正確讀取,表明反序列化過程中確實(shí)是調(diào)用了具體子類對應(yīng)的類來進(jìn)行實(shí)例化的。

以上就是SpringBoot中怎么反序列化子類,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


當(dāng)前標(biāo)題:SpringBoot中怎么反序列化子類
轉(zhuǎn)載來源:http://weahome.cn/article/jedgss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部