What is GraalOS exactly?
I was reading about GraalVM and suddenly I encountered the term graalOS, I thought it was like an OS for running graal native images efficiently but I got a little bit confused and found a definition on oracle docs saying : “GraalOS is an application deployment technology that uses GraalVM Native Image to run your application as a native machine executable” which doesn’t seem like an OS.
Object myo = objectInputStream.readObject() java.io.InvalidClassException: java.util.HashMap; local class incompatible: stream classdesc with graalVM
Include details about your goal: Use return (Map<?, ?>) objectInputStream.readObject(); to get a Map without failing in graalVM native image. Describe expected results: return (Map<?, ?>) objectInputStream.readObject(); would return a correct map Describe actual results: It is failing with either asking for java.util.Collections$UnmodifiableMap to be added to serialization-config.json if I add java.util.Collections$UnmodifiableMap to serialization-config.json (which […]