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

JsonNodeValueResolver.toMap() should resolve the value of the Map.Entry in entrySet() #969

Open
DavidWei252 opened this issue Apr 20, 2022 · 1 comment
Assignees
Labels

Comments

@DavidWei252
Copy link

DavidWei252 commented Apr 20, 2022

The current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function didn't resolve the value of the entry. (source)

For example:
With input { "array": [ {"foo":"bar"},{"foo":"biz"} ] } and template {{ join this.array ", " }}

The current implementation will output {foo="bar"},{foo="biz"}
Instead we want the output become {foo=bar},{foo=biz}

Task:
Update the current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function to resolve the entry value.

@carusology
Copy link
Collaborator

Candidate in #965.

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

No branches or pull requests

2 participants