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)
|
||||
- [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)
|
||||
- [A Guide to FastJson](https://www.baeldung.com/fastjson)
|
||||
- More Articles: [[<-- prev]](/json)
|
||||
|
@ -14,6 +14,11 @@
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>fastjson</artifactId>
|
||||
<version>${fastjson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsonschema2pojo</groupId>
|
||||
<artifactId>jsonschema2pojo-core</artifactId>
|
||||
@ -142,6 +147,7 @@
|
||||
<properties>
|
||||
<jsoniter.version>0.9.23</jsoniter.version>
|
||||
<moshi.version>1.9.2</moshi.version>
|
||||
<fastjson.version>1.2.21</fastjson.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
@ -1,4 +1,4 @@
|
||||
package fast_json;
|
||||
package com.baeldung.fastjson;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.alibaba.fastjson.JSONArray;
|
@ -1,4 +1,4 @@
|
||||
package fast_json;
|
||||
package com.baeldung.fastjson;
|
||||
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
|
@ -4,7 +4,6 @@ This module contains articles about JSON.
|
||||
|
||||
### Relevant Articles:
|
||||
- [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 JsonPath](https://www.baeldung.com/guide-to-jayway-jsonpath)
|
||||
- [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)
|
||||
- [Escape JSON String in Java](https://www.baeldung.com/java-json-escaping)
|
||||
- [Reducing JSON Data Size](https://www.baeldung.com/json-reduce-data-size)
|
||||
- More Articles: [[next -->]](/json-2)
|
||||
|
@ -26,11 +26,6 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>fastjson</artifactId>
|
||||
<version>${fastjson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.json</groupId>
|
||||
<artifactId>json</artifactId>
|
||||
@ -72,7 +67,6 @@
|
||||
|
||||
<properties>
|
||||
<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>
|
||||
<yasson.version>1.0.1</yasson.version>
|
||||
<json.version>20171018</json.version>
|
||||
|
Loading…
x
Reference in New Issue
Block a user