JAVA-8370: Split or move json module
This commit is contained in:
parent
40669cc7c6
commit
5e02fd897a
@ -8,3 +8,5 @@ This module contains articles about JSON.
|
|||||||
- [Introduction to Moshi Json](https://www.baeldung.com/java-json-moshi)
|
- [Introduction to Moshi Json](https://www.baeldung.com/java-json-moshi)
|
||||||
- [Hypermedia Serialization With JSON-LD](https://www.baeldung.com/json-linked-data)
|
- [Hypermedia Serialization With JSON-LD](https://www.baeldung.com/json-linked-data)
|
||||||
- [Generate a Java Class From JSON](https://www.baeldung.com/java-generate-class-from-json)
|
- [Generate a Java Class From JSON](https://www.baeldung.com/java-generate-class-from-json)
|
||||||
|
- [A Guide to FastJson](https://www.baeldung.com/fastjson)
|
||||||
|
- More Articles: [[<-- prev]](/json)
|
||||||
|
@ -14,6 +14,11 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba</groupId>
|
||||||
|
<artifactId>fastjson</artifactId>
|
||||||
|
<version>${fastjson.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jsonschema2pojo</groupId>
|
<groupId>org.jsonschema2pojo</groupId>
|
||||||
<artifactId>jsonschema2pojo-core</artifactId>
|
<artifactId>jsonschema2pojo-core</artifactId>
|
||||||
@ -142,6 +147,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<jsoniter.version>0.9.23</jsoniter.version>
|
<jsoniter.version>0.9.23</jsoniter.version>
|
||||||
<moshi.version>1.9.2</moshi.version>
|
<moshi.version>1.9.2</moshi.version>
|
||||||
|
<fastjson.version>1.2.21</fastjson.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -1,4 +1,4 @@
|
|||||||
package fast_json;
|
package com.baeldung.fastjson;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson.JSONArray;
|
@ -1,4 +1,4 @@
|
|||||||
package fast_json;
|
package com.baeldung.fastjson;
|
||||||
|
|
||||||
import com.alibaba.fastjson.annotation.JSONField;
|
import com.alibaba.fastjson.annotation.JSONField;
|
||||||
|
|
@ -4,7 +4,6 @@ This module contains articles about JSON.
|
|||||||
|
|
||||||
### Relevant Articles:
|
### Relevant Articles:
|
||||||
- [Introduction to JSON Schema in Java](https://www.baeldung.com/introduction-to-json-schema-in-java)
|
- [Introduction to JSON Schema in Java](https://www.baeldung.com/introduction-to-json-schema-in-java)
|
||||||
- [A Guide to FastJson](https://www.baeldung.com/fastjson)
|
|
||||||
- [Introduction to JSONForms](https://www.baeldung.com/introduction-to-jsonforms)
|
- [Introduction to JSONForms](https://www.baeldung.com/introduction-to-jsonforms)
|
||||||
- [Introduction to JsonPath](https://www.baeldung.com/guide-to-jayway-jsonpath)
|
- [Introduction to JsonPath](https://www.baeldung.com/guide-to-jayway-jsonpath)
|
||||||
- [Introduction to JSON-Java (org.json)](https://www.baeldung.com/java-org-json)
|
- [Introduction to JSON-Java (org.json)](https://www.baeldung.com/java-org-json)
|
||||||
@ -14,3 +13,4 @@ This module contains articles about JSON.
|
|||||||
- [Iterating Over an Instance of org.json.JSONObject](https://www.baeldung.com/jsonobject-iteration)
|
- [Iterating Over an Instance of org.json.JSONObject](https://www.baeldung.com/jsonobject-iteration)
|
||||||
- [Escape JSON String in Java](https://www.baeldung.com/java-json-escaping)
|
- [Escape JSON String in Java](https://www.baeldung.com/java-json-escaping)
|
||||||
- [Reducing JSON Data Size](https://www.baeldung.com/json-reduce-data-size)
|
- [Reducing JSON Data Size](https://www.baeldung.com/json-reduce-data-size)
|
||||||
|
- More Articles: [[next -->]](/json-2)
|
||||||
|
@ -26,11 +26,6 @@
|
|||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.alibaba</groupId>
|
|
||||||
<artifactId>fastjson</artifactId>
|
|
||||||
<version>${fastjson.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
@ -72,7 +67,6 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<everit.json.schema.version>1.4.1</everit.json.schema.version>
|
<everit.json.schema.version>1.4.1</everit.json.schema.version>
|
||||||
<fastjson.version>1.2.21</fastjson.version>
|
|
||||||
<jsonb-api.version>1.0</jsonb-api.version>
|
<jsonb-api.version>1.0</jsonb-api.version>
|
||||||
<yasson.version>1.0.1</yasson.version>
|
<yasson.version>1.0.1</yasson.version>
|
||||||
<json.version>20171018</json.version>
|
<json.version>20171018</json.version>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user