You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please describe your feature request.
I want the generated properties to work with Spring Boot.
Problem is Spring Boot uses a bracket notation for list indices ([]).
Describe the solution you'd like
If we have data:
# block comments come throughperson: # neither do comments on mapsname: Mike Wazowski # comments on values appearpets:
- cat # comments on array values appearfood: [pizza] # comments on arrays do notemptyArray: []emptyMap: []
it could output
# block comments come through# comments on values appearperson.name = Mike Wazowski# comments on array values appearperson.pets[0]=catperson.food[1]=pizza
Describe alternatives you've considered
Sed the output
The text was updated successfully, but these errors were encountered:
Please describe your feature request.
I want the generated properties to work with Spring Boot.
Problem is Spring Boot uses a bracket notation for list indices (
[]
).Describe the solution you'd like
If we have data:
it could output
Describe alternatives you've considered
Sed the output
The text was updated successfully, but these errors were encountered: