You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by xi...@apache.org on 2021/09/14 06:28:10 UTC

[dubbo-spi-extensions] branch master updated (9c5d9dd -> 36d2b82)

This is an automated email from the ASF dual-hosted git repository.

xiaoheng pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-spi-extensions.git.


    from 9c5d9dd  Extend avro serialization (#55)
     new 3f5f213  fastjson
     new 2838b05  Merge branch 'master' into fastjson
     new 36d2b82  Merge pull request #57 from hclown9804/fastjson

The 103 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../dubbo-serialization-fastjson/pom.xml           |  43 +++++
 .../serialize/fastjson/FastJsonObjectInput.java}   |  87 ++++-----
 .../serialize/fastjson/FastJsonObjectOutput.java}  |  77 ++++----
 .../serialize/fastjson/FastJsonSerialization.java} |  21 ++-
 ...org.apache.dubbo.common.serialize.Serialization |   1 +
 .../dubbo-serialization-test/pom.xml               |   5 +
 .../fastjson/FastJsonObjectInputTest.java          | 199 +++++++++++++++++++++
 .../fastjson/FastJsonObjectOutputTest.java         | 142 +++++++++++++++
 .../FastJsonSerializationTest.java}                |  26 ++-
 dubbo-serialization-extensions/pom.xml             |   1 +
 10 files changed, 504 insertions(+), 98 deletions(-)
 create mode 100644 dubbo-serialization-extensions/dubbo-serialization-fastjson/pom.xml
 copy dubbo-serialization-extensions/{dubbo-serialization-avro/src/main/java/org/apache/dubbo/common/serialize/avro/AvroObjectInput.java => dubbo-serialization-fastjson/src/main/java/org/apache/dubbo/common/serialize/fastjson/FastJsonObjectInput.java} (53%)
 copy dubbo-serialization-extensions/{dubbo-serialization-avro/src/main/java/org/apache/dubbo/common/serialize/avro/AvroObjectOutput.java => dubbo-serialization-fastjson/src/main/java/org/apache/dubbo/common/serialize/fastjson/FastJsonObjectOutput.java} (55%)
 copy dubbo-serialization-extensions/{dubbo-serialization-avro/src/main/java/org/apache/dubbo/common/serialize/avro/AvroSerialization.java => dubbo-serialization-fastjson/src/main/java/org/apache/dubbo/common/serialize/fastjson/FastJsonSerialization.java} (74%)
 create mode 100644 dubbo-serialization-extensions/dubbo-serialization-fastjson/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.common.serialize.Serialization
 create mode 100644 dubbo-serialization-extensions/dubbo-serialization-test/src/test/java/org/apache/dubbo/common/serialize/fastjson/FastJsonObjectInputTest.java
 create mode 100644 dubbo-serialization-extensions/dubbo-serialization-test/src/test/java/org/apache/dubbo/common/serialize/fastjson/FastJsonObjectOutputTest.java
 copy dubbo-serialization-extensions/dubbo-serialization-test/src/test/java/org/apache/dubbo/common/serialize/{avro/AvroSerializationTest.java => fastjson/FastJsonSerializationTest.java} (70%)