Add support for java record serialization#1223
Closed
eranl wants to merge 16 commits intogoogleapis:mainfrom
Closed
Add support for java record serialization#1223eranl wants to merge 16 commits intogoogleapis:mainfrom
eranl wants to merge 16 commits intogoogleapis:mainfrom
Conversation
Contributor
Author
|
CI failures seem to all be in the new JDK17 module I added, which adds weight to my question # 7 above |
Contributor
Author
|
Hi @tom-andersen, any update on this PR? |
…cloud-firestore module by adding a test-jdk17 directory and a java17 profile, and eliminate google-cloud-firestore-jdk17 module
# Conflicts: # google-cloud-firestore/src/main/java/com/google/cloud/firestore/CustomClassMapper.java
…cloud-firestore module by adding a test-jdk17 directory and a java17 profile, and eliminate google-cloud-firestore-jdk17 module
# Conflicts: # google-cloud-firestore/src/main/java/com/google/cloud/firestore/CustomClassMapper.java
Contributor
Author
|
Superseded by #1706, which was merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
With this change, java records will be serialized using their automatic constructors and accessors. Since records are not supported in JDK8, reflection is used for inspecting record metadata.
I created a new google-cloud-firestore-jdk17 module, for two purposes:
Fixes #1152 ☕️
Some comments and questions: