xigexb opened a new issue, #2484: URL: https://github.com/apache/fory/issues/2484
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/fory/issues) and found no similar issues. ### Version Windows11 java21 GraalVM fory-core-0.11.2 ### Component(s) Java ### Minimal reproduce step org.apache.fory.serializer.NonexistentClass$NonexistentMetaShared /** * Fory实例 */ private static final ThreadSafeFory fory = new ThreadLocalFory(classLoader -> Fory.builder().withLanguage(Language.JAVA) .withStringCompressed(false) .withLongCompressed(false) .withLongCompressed(false) .withAsyncCompilation(true) .requireClassRegistration(true) .withCompatibleMode(CompatibleMode.COMPATIBLE) .withClassLoader(classLoader).build()); @EqualsAndHashCode(callSuper = true) @Data public class NodeHeartbeatMessage extends NodeMessage { /** * 时间戳 */ private Long ts; public NodeHeartbeatMessage() { } } ### What did you expect to see? 正常序列化运行 ### What did you see instead? A系统序列化一个数据类,通过kafka发送B系统,B系统偶发无法序列化出来 1. 每次改完代码,需要手动mvn重新编译后在启动就正常运行,反之则不行。 2. 部署的系统重启之后会有概率遇到这个问题。 ### Anything Else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
