jackson-dataformat-hocon
jackson-dataformat-hocon copied to clipboard
Jackson parser format for parsing HOCON
Commit e9580ca says that 1.1.1 has been released, but the latest version in maven central is [1.1.0](https://search.maven.org/artifact/com.jasonclawson/jackson-dataformat-hocon/1.1.0/jar)
```kotlin val parsedMap = Constants.HOCON_MAPPER.readValue("""{ 1 = "abc" }""") println(parsedMap) ``` Output: `{1=abc}` ```kotlin val parsedMap = Constants.HOCON_MAPPER.readValue("""{ 0 = "abc" }""") println(parsedMap) ``` Output: ``` Exception in thread "main"...
When parsing HOCON, the mapper does not recognize dash case (e.g. 'sample-key: "a"') to convert it to camel case ('sampleKey') PS: Sorry for the previous title. My co-worker was messing...
If I have a .conf file: ``` { a : { include required(classpath("myyaml")) } } ``` I will get a stack-trace with: ``` Caused by: java.io.IOException: resource not found on...
The README.md also has wrong maven coordinates.
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...