Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.08 KB

README.md

File metadata and controls

15 lines (11 loc) · 1.08 KB

HOCON Jackson data format

Implementation of a Jackson parser for parsing the HOCON data format.

What the heck is HOCON?

HOCON stands for Human-Optimized Config Object Notation and is made by Typesafe. Check out the project here: github.com/typesafehub/config

In short, HOCON combines YAML, JSON, and Properties files into a single format. On most cases, YAML, JSON, and Properties formats are all valid HOCON--- and it can be mixed and matched at will. Check out the HOCON docs for more detail on the format.

Why this project?

I created this project because I wanted to be able to use HOCON to configure my Dropwizard based applications. Under the hood, Dropwizard uses Jackson to parse its configuration files in either JSON / YAML format. I wanted to be able to easily switch that to using HOCON. Thus, this project was born.

Build Status