HOCON support for Jackson

HOCON dataformat implementation for Jackson

License

License

Categories

Categories

Data Jackson JSON ORM
GroupId

GroupId

org.honton.chas.hocon
ArtifactId

ArtifactId

jackson-dataformat-hocon
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

HOCON support for Jackson
HOCON dataformat implementation for Jackson
Project URL

Project URL

https://github.com/chonton/jackson-dataformat-hocon
Source Code Management

Source Code Management

https://github.com/chonton/jackson-dataformat-hocon/

Download jackson-dataformat-hocon

How to add to project

<!-- https://jarcasting.com/artifacts/org.honton.chas.hocon/jackson-dataformat-hocon/ -->
<dependency>
    <groupId>org.honton.chas.hocon</groupId>
    <artifactId>jackson-dataformat-hocon</artifactId>
    <version>1.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.honton.chas.hocon/jackson-dataformat-hocon/
implementation 'org.honton.chas.hocon:jackson-dataformat-hocon:1.1.1'
// https://jarcasting.com/artifacts/org.honton.chas.hocon/jackson-dataformat-hocon/
implementation ("org.honton.chas.hocon:jackson-dataformat-hocon:1.1.1")
'org.honton.chas.hocon:jackson-dataformat-hocon:jar:1.1.1'
<dependency org="org.honton.chas.hocon" name="jackson-dataformat-hocon" rev="1.1.1">
  <artifact name="jackson-dataformat-hocon" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.honton.chas.hocon', module='jackson-dataformat-hocon', version='1.1.1')
)
libraryDependencies += "org.honton.chas.hocon" % "jackson-dataformat-hocon" % "1.1.1"
[org.honton.chas.hocon/jackson-dataformat-hocon "1.1.1"]

Dependencies

compile (4)

Group / Artifact Type Version
com.fasterxml.jackson.core : jackson-annotations jar 2.4.1
com.fasterxml.jackson.core : jackson-core jar 2.4.1.1
com.fasterxml.jackson.core : jackson-databind jar 2.4.1.1
com.typesafe : config jar 1.3.1

test (1)

Group / Artifact Type Version
junit : junit jar 4.10

Project Modules

There are no modules declared in this project.

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.

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?

This project lets you use HOCON to configure any application that uses Jackson to parse its configuration files.

How to Use

Add the following fragment to your project pom to include HOCON data format:

  <dependency>
    <groupId>org.honton.chas.hocon</groupId>
    <artifactId>jackson-dataformat-hocon</artifactId>
    <version>1.1.1</version>
  </dependency>

Create the Jackson ObjectMapper with the following constructor:

  ObjectMapper mapper = new ObjectMapper(new HoconFactory());

Some Caveats

There is support for HOCON include statements if the URL or File version of ObjectMapper is used. (Unfortunately, the Jackson InputDecorator will be ignored).

  Configuration c = mapper.readValue(new URL("http://example.com/path/test.conf"), Configuration.class);

or

  Configuration c = mapper.readValue(new File(filepath), Configuration.class);

There is support for Jackson InputDecorator if the InputStream or Reader version of ObjectMapper is used. (Unfortunately, the HOCON statements include will be ignored).

  Configuration c = mapper.readValue(new FileInputStream("http://example.com/path/test.conf"), Configuration.class);

or

  Configuration c = mapper.readValue(new InputStreamReader(is), Configuration.class);

Build Status

Versions

Version
1.1.1