We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
for example,
case class Foo( hello: String, @JsonParse world: List[Int] )
Normally, you would need to submit a payload like this to match Foo
Foo
hello=something world[0]=198 world[1]=897123 world[2]=9
We want to allow:
hello=something world={198, 897123, 9}
It seems a @JsonParse annotation or something like that could do the trick
@JsonParse
The text was updated successfully, but these errors were encountered:
idk, why not just make the whole thing json if you're gonna use json?
Sorry, something went wrong.
this is most useful for things that are already done with forms and have simple fields, but we need to add some more complicated thing
No branches or pull requests
for example,
Normally, you would need to submit a payload like this to match
Foo
We want to allow:
It seems a
@JsonParse
annotation or something like that could do the trickThe text was updated successfully, but these errors were encountered: