美文网首页
Spring Boot 集成FastJson

Spring Boot 集成FastJson

作者: 一杉风雨 | 来源:发表于2018-10-02 14:15 被阅读0次

    背景

    在项目中时常会用到Json的基本操作和序列化、反序列化,这里推荐号称速度第一的阿里巴巴FastJson

    内容

    1. 依赖-Gradle
    implementation('com.alibaba:fastjson:1.2.46')
    
    1. 依赖-Maven
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>fastjson</artifactId>
        <version>1.2.46</version>
    </dependency>
    
    1. 常用操作
    // 序列化
    String text = JSON.toJSONString(obj); 
    
    // 反序列化
    VO vo = JSON.parseObject("{...}", VO.class); 
    

    相关文章

      网友评论

          本文标题:Spring Boot 集成FastJson

          本文链接:https://www.haomeiwen.com/subject/mxxaoftx.html