Kripton Persistence Library
Kripton is a java library, for Android and Java platform, that provides a simple and uniform way to manage persistence of Java classes in different flavours through annotations and interface. Supported persistence format are:
To get max performance and avoid boilerplate-code, Kripton use annotation processor. With the power of annotation processor is possible to create code to persist a java class, simply with an annotation. There are many other libraries that do this, but Kripton allows to persists java object without using reflection and with just few lines of code.
See wiki for more informations.
See benchmarks for more informations about JSON persistence perfomance.
If you are interested in Kripton Persistence Library, visit abubusoft.com
Setup
You can use Kritpon Annotation Processor and Kripton Library via maven
<dependencies>
...
<dependency>
<groupId>com.abubusoft</groupId>
<artifactId>kripton</artifactId>
<version>2.0.2</version>
</dependency>
... </dependencies> ...
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<annotationProcessorPaths>
<path>
<groupId>com.abubusoft</groupId>
<artifactId>kripton-processor</artifactId>
<version>2.0.2</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
...
</plugins> </build>
or via gradle
// annotation processor annotationProcessor "com.abubusoft:kripton-processor:2.0.2" // https://mvnrepository.com/artifact/com.abubusoft/kripton compile "com.abubusoft:kripton-android-library:2.0.2"
Snapshots of the development version are available in Sonatype's snapshots repository.
Kritpon requires at minimum Java 7 or Android 2.3.
Build
To build entire library collections just download repository and launch from base directory
mvn clean install -Prelease
Supported platforms
There are two platform: the android environment and generic Java environment. For each platform there is a version of library. Android platform already include a json library and xml parser library. Java JDK does not include a json library and have different xml parser libraries.
Donate
If you like Kripton and you want to support its development, please donate!
License
Copyright 2015 Francesco Benincasa. Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.