Fastjson Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki

Fastjson is a JSON processor (JSON parser + JSON generator) written in Java

Fastjson Maven Dependency

Copy below Fastjson maven dependency and paste in your project pom.xml file:

<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.62</version>
</dependency>

Fastjson Gradle Dependency

Copy below Fastjson gradle dependency and paste in your project build.gradle file:

// https://mvnrepository.com/artifact/com.alibaba/fastjson
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.62'

Download JAR File

https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.62/fastjson-1.2.62.jar

Check for Latest Release

https://mvnrepository.com/artifact/com.alibaba/fastjson

Reference

https://mvnrepository.com/artifact/com.alibaba/fastjson

⚠️ **GitHub.com Fallback** ⚠️