Why do not jackson and kotlin follow camel-case format? #267
zhaoxi2000
started this conversation in
General
Replies: 1 comment
-
Try asking StackOverflow,, there is Jackson feature to configure CamelCase vs SnakeCase setc... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want it to output {"", "", } following camel-case format!
But it outputs:

My test code and configuration is below:

data class PostOssSignatureResponse( val policy: String, val accessKeyId: String, val signature: String, val securityToken: String, val xOssSignatureVersion: String, val xOssCredential: String, val xOssDate: String, val host: String, val callback: String, val dir: String )
Environment:

Beta Was this translation helpful? Give feedback.
All reactions