fastjson-spring-boot-autoconfigure

fastjson integration with springboot.

License

License

Categories

Categories

Spring Boot Container Microservices Auto Application Layer Libs Code Generators config Configuration JSON Data fastjson
GroupId

GroupId

com.cuisongliu
ArtifactId

ArtifactId

fastjson-spring-boot-autoconfigure
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

fastjson-spring-boot-autoconfigure
fastjson integration with springboot.
Project URL

Project URL

https://github.com/cuisongliu/fastjson-boot-starter
Source Code Management

Source Code Management

https://github.com/cuisongliu/fastjson-boot-starter

Download fastjson-spring-boot-autoconfigure

How to add to project

<!-- https://jarcasting.com/artifacts/com.cuisongliu/fastjson-spring-boot-autoconfigure/ -->
<dependency>
    <groupId>com.cuisongliu</groupId>
    <artifactId>fastjson-spring-boot-autoconfigure</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.cuisongliu/fastjson-spring-boot-autoconfigure/
implementation 'com.cuisongliu:fastjson-spring-boot-autoconfigure:1.0'
// https://jarcasting.com/artifacts/com.cuisongliu/fastjson-spring-boot-autoconfigure/
implementation ("com.cuisongliu:fastjson-spring-boot-autoconfigure:1.0")
'com.cuisongliu:fastjson-spring-boot-autoconfigure:jar:1.0'
<dependency org="com.cuisongliu" name="fastjson-spring-boot-autoconfigure" rev="1.0">
  <artifact name="fastjson-spring-boot-autoconfigure" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.cuisongliu', module='fastjson-spring-boot-autoconfigure', version='1.0')
)
libraryDependencies += "com.cuisongliu" % "fastjson-spring-boot-autoconfigure" % "1.0"
[com.cuisongliu/fastjson-spring-boot-autoconfigure "1.0"]

Dependencies

compile (1)

Group / Artifact Type Version
com.alibaba : fastjson jar 1.2.46

Project Modules

There are no modules declared in this project.

license license

FastJson integration with springboot

FastJson-Spring-Boot-Starter 帮助你集成通用 FastJson 到 Spring Boot。

FastJson-Spring-Boot-Starter will help you use FastJson with Spring Boot.

How to use

maven

在pom.xml加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your pom.xml:

<repositories>
    <repository>
        <id>nexus</id>
        <name>nexus</name>
        <url>http://maven.cuisongliu.com/content/groups/public</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

在pom.xml加入依赖

Add the following dependency to your pom.xml:

<dependency>
   <groupId>com.cuisongliu</groupId>
   <artifactId>fastjson-spring-boot-starter</artifactId>
   <version>1.0</version>
 </dependency>

gradle

在build.gradle加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your build.gradle:

allprojects {
    repositories {
        mavenLocal()
        maven { url "http://maven.cuisongliu.com/content/groups/public" }
        mavenCentral()
        jcenter()
    }
}

在build.gradle加入依赖

Add the following dependency to your build.gradle:

compile "com.cuisongliu:fastjson-spring-boot-starter:1+"

Acknowledgments

FastJson.

Versions

Version
1.0