-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using gson to deserialize json in native image fails #2464
Comments
It looks as if the native image transformation is somehow losing track of the fact that the class is a record? A couple of things you could try: in the app you could print these: System.out.printf("isClass: %s\n", MicrosoftASRResponse.class.isRecord());
System.out.printf("Gson isClass: %s\n", com.google.gson.internal.reflect.ReflectionHelper.isRecord(MicrosoftASRResponse.class)); I would expect both to print |
in the native image,print this
|
Thanks, that's very helpful! I think the problem is here: isRecord = Class.class.getMethod("isRecord");
getRecordComponents = Class.class.getMethod("getRecordComponents");
// Class java.lang.reflect.RecordComponent
Class<?> classRecordComponent = getRecordComponents.getReturnType().getComponentType();
getName = classRecordComponent.getMethod("getName");
getType = classRecordComponent.getMethod("getType"); This code uses reflection to access methods in Class<?> classRecordComponent = getRecordComponents.getReturnType().getComponentType(); Probably if we changed that to this: Class<?> classRecordComponent = Class.forName("java.lang.reflect.RecordComponent"); then everything would work. Meanwhile, you should be able to use manual configuration to tell GraalVM to support this reflective access. I think it would be something like this in a
|
It's working ,Thanks |
Excellent news! |
@eamonnmcmanus Is this fix in any release version yet, if not, when will a new version be deployed to maven central? |
I'm not sure why it's not working on my side. I am on serializing list of record into json and get the following exception
|
@muhrifqii, did you follow the advice given in the exception message above?
Here is an example from Gson's integration tests. However, in the latest GraalVM versions it seems there is now a single |
Gson version
2.10.1
Java / Android version
17.0.8
Used tools
Description
I used gson in springboot, and the code works normally in normal mode. But I packaged the program into a native image and ran it, and an exception occurred.
Expected behavior
Actual behavior
Reproduction steps
String Duration) {
}
2. Gson gson = new Gson()
3. var asrResponse = gson.fromJson(s, MicrosoftASRResponse.class);
4. my reflect-config.json is
5.
[ { "name": "com.mobvoi.noise.microsoft.model.MicrosoftASRResponse", "allDeclaredFields": true, "allDeclaredConstructors": true, "allDeclaredMethods": true, "allPublicMethods": true, "allDeclaredClasses": true, "unsafeAllocated": true } ]
Exception stack trace
The text was updated successfully, but these errors were encountered: