个人简介

Echo Blog


江湖无名 安心练剑
  • Json 之 Jboss Marshaling
    About JBoss Marshalling JBoss Marshalling is an alternative serialization API that fixes many of the problems found in the JDK serialization API while remaining fully compatible with java.io.Seria...
    2018-07-20 01:24:03 | Java
  • Json 之 Hession
    Hessian 概念 Hessian是一个动态类型,二进制序列化,也是网络协议为了对象的定向传输。 优点 Hessian二进制的网络协议使不需要引入大型框架下就可以使用,并且不需要学习其它的入门的协议。 因为它是二进制协议,它更擅长于发送二进制数据,而不需要引入其它附件去扩展它的协议。 Hessian支持很多种语言,例如Java,Flash/Flex,python,c++,.ne...
    2018-07-20 01:24:03 | Java
  • Google Protocol Buffer
    Google Protocol Buffer Protocol Buffers are Google’s language-neutral, platform-neutral, extensible mechanism for serializing structured data. 优点 protobuf是google提供的一个开源序列化框架,类似于XML,JSON这样的数据表示语...
    2018-07-20 01:24:03 | Tool
  • Json 之 JsonIter
    JsonIter jsoniter(json-iterator)是一款快且灵活的 JSON 解析器,同时提供 Java 和 Go 两个版本。 从 dsljson 和 jsonparser 借鉴了大量代码。 性能对比 主流的 JSON 解析器是非常慢的。 Jsoniter Java 版本可以比常用的 jackson/gson/fastjson 快 3 倍。 如果你需要处理大量的 J...
    2018-07-20 01:24:03 | Java
  • Json 之 Jackson
    jackson jackson is a suite of data-processing tools for Java (and the JVM platform), including the flagship streaming JSON parser / generator library, matching data-binding library (POJOs to and f...
    2018-07-20 01:24:03 | Java
  • Json 之 Gson
    GJson GJson is a Java serialization/deserialization library to convert Java Objects into JSON and back。 GJson
    2018-07-20 01:24:03 | Java
  • Json 之 FST
    fast-serialization 简介 FST is fast java serialization drop in-replacement。 特性 up to 10 times faster 100% JDK Serialization compatible drop-in replacement (Ok, might be 99% ..). As an example: La...
    2018-07-20 01:24:03 | Java
  • Json 之 FastJson
    FastJson Fastjson 是一个Java库,可用于将Java对象转换为其JSON表示。它还可以用于将JSON字符串转换为等效的Java对象。Fastjson可以使用任意Java对象,包括您没有源代码的预先存在的对象。 多余的属性 json 转为对象 User.java public class User { private String name; ...
    2018-07-20 01:24:03 | Java