An open API service indexing awesome lists of open source software.

https://github.com/felixklauke/kira

Object mapper that translates arbitrary container classes into java maps to prepare them for easy serialization with trivial data types. Designed with things like JSON and YAML in mind.
https://github.com/felixklauke/kira

container deserialization json mapper mapping serialization yaml

Last synced: about 2 months ago
JSON representation

Object mapper that translates arbitrary container classes into java maps to prepare them for easy serialization with trivial data types. Designed with things like JSON and YAML in mind.

Awesome Lists containing this project

README

          

# kira

Kira is a lightweight replacement for the overall much too complex and weird to use jackson object mapper.
It's primary purpose is translating Java Objects into maps that only contain non abstract data types. Those can be serialized in JSON or YAML very easily.

## Supported formats
- JSON
- YAML
- XML

# Usage

**Maven Repositories:**
```xml



klauke-enterprises-maven-releases
Klauke Enterprises Maven Releases
https://repository.klauke-enterprises.com/repository/maven-releases/




klauke-enterprises-maven-snapshots
Klauke Enterprises Maven Snapshots
https://repository.klauke-enterprises.com/repository/maven-snapshots/

```

**Maven dependencies**
```xml

de.felixklauke.kira
kira-core
1.0.0-SNAPSHOT
compile

```