vert-x3 / vertx-config

Vert.x Configuration Service
Apache License 2.0
54 stars 64 forks source link

Preserve string representation when converting to JSON #127

Closed tsegismont closed 3 years ago

tsegismont commented 3 years ago

When converting from properties to JSON, we should preserve the string representation.

Indeed, users might want to get the value '123456' as a String, and so far we would convert it to Double which led to String value being '123456.0'.

Fixes #124