You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In which the passed `constructorToCall` differs from what would automatically be used if regular serialization of `cl`.
674
-
675
-
To also support such serialization use cases, it is possible to register serialization for a class with a
676
-
custom `constructorToCall`.
677
-
For example, to allow serialization of `org.apache.spark.SparkContext$$anonfun$hadoopFile$1`, use the declared constructor of `java.lang.Object` as a custom `targetConstructor`, use:
All possible custom constructors are automatically registered when registering a class for run-time serialization. This use case therefore doesn't require additional metadata.
688
675
689
676
## Sample Reachability Metadata
690
677
@@ -751,8 +738,7 @@ See below is a sample reachability metadata configuration that you can use in _r
Copy file name to clipboardexpand all lines: substratevm/CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ At runtime, premain runtime options are set along with main class' arguments in
16
16
* (GR-58383) The length of the printed stack trace when using `-XX:MissingRegistrationReportingMode=Warn` can now be set with `-XX:MissingRegistrationWarnContextLines=` and its default length is now 8.
17
17
* (GR-58914) `ActiveProcessorCount` must be set at isolate or VM creation time.
* (GR-60234) Remove `"customTargetConstructorClass"` field from the serialization JSON metadata. All possible constructors are now registered by default when registering a type for serialization.
19
20
20
21
## GraalVM for JDK 23 (Internal Version 24.1.0)
21
22
* (GR-51520) The old class initialization strategy, which was deprecated in GraalVM for JDK 22, is removed. The option `StrictImageHeap` no longer has any effect.
Copy file name to clipboardexpand all lines: substratevm/src/com.oracle.svm.configure.test/src/com/oracle/svm/configure/test/config/OmitPreviousConfigTests.java
Copy file name to clipboardexpand all lines: substratevm/src/com.oracle.svm.configure/src/com/oracle/svm/configure/config/SerializationConfiguration.java
Copy file name to clipboardexpand all lines: substratevm/src/com.oracle.svm.configure/src/com/oracle/svm/configure/config/SerializationConfigurationType.java
Copy file name to clipboardexpand all lines: substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/configure/LegacySerializationConfigurationParser.java
"\" is deprecated in serialization-config.json. All serializable classes can be instantiated through any superclass constructor without the use of the flag.");
0 commit comments