Does exist an Java query string parser that support nested object ?
For example, I have the following query string :
foo=bar&nested[attr]=found&nested[bar]=false
I would to a java map (Map<String, Object>
) like this :
list:
foo => bar
nested => list:
attr => found
bar => false
It will be useful to generate json like this :
{"foo": "bar", "nested": {"attr": "found", "bar": false}}