shuyufang
shuyufang
…ullClassInfo ## What does this PR do? we has some scene , after the class with the upstream system serialized, the downstream system can not deserialize without the class object,...
### Feature Request we want fury support deserialize object when none local class can deserializeNonexistentClassNotWriteFullClassInfo feature ### Is your feature request related to a problem? Please describe we want fury...
### Question public class FurySerializer implements Serializer { /** * fury配置 */ private static final ThreadSafeFury fury = new FuryBuilder().withLanguage(Language.JAVA) .withRefTracking(true) .requireClassRegistration(false) .withDeserializeNonexistentClass(true) .withMetaShare(true) .withAsyncCompilation(true) .withCompatibleMode(CompatibleMode.COMPATIBLE) .withScopedMetaShare(true) .withCodegen(true).buildThreadSafeFury(); @Override public...