首頁 >Java >java教程 >如何使用 jsonschema2pojo Maven 外掛程式從 JSON 產生 Java 類別?

如何使用 jsonschema2pojo Maven 外掛程式從 JSON 產生 Java 類別?

Barbara Streisand
Barbara Streisand原創
2024-12-09 04:45:12703瀏覽

How to Generate Java Classes from JSON Using the jsonschema2pojo Maven Plugin?

如何在Maven 中從JSON 產生Java 類別

從JSON 產生Java 來源檔案是物件到JSON 對應的一項有價值的技術和資料序列化。在這種情況下,我們尋求創建類似於以下內容的Java 類別:

class Address {
  private JSONObject mInternalJSONObject;

  Address(JSONObject json) {
    mInternalJSONObject = json;
  }

  String getStreetAddress() {
    return mInternalJSONObject.getString("streetAddress");
  }

  String getCity() {
    return mInternalJSONObject.getString("city");
  }
}

class Person {
  private JSONObject mInternalJSONObject;

  Person(JSONObject json) {
    mInternalJSONObject = json;
  }

  String getFirstName() {
    return mInternalJSONObject.getString("firstName");
  }

  String getLastName() {
    return mInternalJSONObject.getString("lastName");
  }

  Address getAddress() {
    return new Address(mInternalJSONObject.getJSONObject("address"));
  }
}

要在Maven 專案中實現這一生成,您可以利用http://www.jsonschema2pojo.org 等綜合工具。或者,您可以使用 Maven 的 jsonschema2pojo 外掛程式:

<plugin>
  <groupId>org.jsonschema2pojo</groupId>
  <artifactId>jsonschema2pojo-maven-plugin</artifactId>
  <version>1.0.2</version>
  <configuration>
    <sourceDirectory>${basedir}/src/main/resources/schemas</sourceDirectory>
    <targetPackage>com.myproject.jsonschemas</targetPackage>
    <sourceType>json</sourceType>
  </configuration>
  <executions>
    <execution>
      <goals>
        <goal>generate</goal>
      </goals>
    </execution>
  </executions>
</plugin>

對於 JSON 來源,您可以指定 json。但是,如果您擁有實際的 JSON 模式,則不需要此行。

近年來,JSON 模式規格取得了顯著進步,為定義結構規則提供了強大的機制。此外,jsonschema2pojo 專案提供了一個專用工具,可將 JSON 模式文件轉換為 Java DTO 類別。雖然仍在開發中,但它涵蓋了 JSON 模式的重要部分。使用者回饋對於其持續發展至關重要,您可以透過命令列或 Maven 插件提供。

以上是如何使用 jsonschema2pojo Maven 外掛程式從 JSON 產生 Java 類別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn