jackson-dataformat-hocon
jackson-dataformat-hocon copied to clipboard
Transforming from HOCON to JSON before deserialization
Hello.
For deserialization, is there an advantage in using jackson-dataformat-hocon over transforming the HOCON configuration to JSON for Jackson's reading? Is jackson-dataformat-hocon more intended for serialization?
Sample code: String json = typesafeConfig.root().render(ConfigRenderOptions.concise());
Thanks!