Skip to content
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

JsonFormat compatibility for unconventionally named properties #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

gowa
Copy link

@gowa gowa commented Feb 1, 2025

With ProtobufJacksonConfig.useCanonicalSerialization the output produced by jackson-datatype-protobuf is not compatible with JsonFormat.

message UnconventionalProto3 {
  string camelCase = 1;
  string weird_UpperCamelCase = 2;
  string weird_lowerCamelCase = 3;
  string weird_1lowerCamelCase = 4;
  string weird_2UpperCamelCase = 5;
  string weird_3_lowerCamelCase = 6;
  string weird_4_UpperCamelCase = 7;
}

E.g., JsonFormat would have produced:
"camelCase":"value"
while jackson-datatype-protobuf produces:
"camelcase":"value"

It's suggested to use another PropertyNamingStrategy with useCanonicalSerialization.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant