diff --git a/docs/guide/java_serialization_guide.md b/docs/guide/java_serialization_guide.md index 707643935b..9a792d7b00 100644 --- a/docs/guide/java_serialization_guide.md +++ b/docs/guide/java_serialization_guide.md @@ -521,9 +521,7 @@ consistent between serialization and deserialization. ### Deserialize POJO into another type Fury allows you to serialize one POJO and deserialize it into a different POJO. To achieve this, configure Fury with -`CompatibleMode` set to `org.apache.fury.config.CompatibleMode.COMPATIBLE`. Additionally, you only need to register the -specific classes you want to serialize or deserialize to setup type mapping relationship; there's no need to register any nested classes within them. -[See example here](/java/fury-core/src/test/java/org/apache/fury/serializer/compatible/DifferentPOJOCompatibleSerializerTest.java) +`CompatibleMode` set to `org.apache.fury.config.CompatibleMode.COMPATIBLE`. ### Use wrong API for deserialization