I have a josn string like below,
def input = '''{"name":"abul","age":30,"street":"Uttara"}'''
After parsing json string input like below,
def output = new groovy.json.JsonSlurper().parseText(input)
I got following value of output
'''{"age":30,"name":"abul","street":"Uttara"}'''
But I expect no change in order i.e, expected result is
{"name":"abul","age":30,"street":"Uttara"}
How can I do using same lib i.e, groovy.json.JsonSlurper
If you want ordering, you'll have to use a json array.