blob: 949cba690e53b412128507449d0de05f4f597dfc [file] [view]
PredictionIO Java SDK
=====================
Getting Started
===============
By Maven
--------
If you have a Maven project, simply add the dependency to your `pom.xml`.
```XML
<project ...>
...
<dependencies>
<dependency>
<groupId>io.prediction</groupId>
<artifactId>client</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
...
```
By Ivy
------
If you use Ivy, simply add the dependency to your `ivy.xml`.
```XML
<ivy-module ...>
...
<dependencies>
<dependency org="io.prediction" name="client" rev="0.8.0" />
...
</dependencies>
...
```
sbt
---
If you have an sbt project, add the library dependency to your build definition.
```Scala
libraryDependencies += "io.prediction" % "client" % "0.8.0"
```
Building from Source
--------------------
Assuming you are cloning to your home directory.
```sh
cd ~
git clone git://github.com/PredictionIO/PredictionIO-Java-SDK.git
```
To build this SDK you will need Maven 3+. Run the following to publish the module to your local Maven repository.
```sh
cd ~/PredictionIO-Java-SDK
mvn clean install
```
Run the following to generate API documentation.
```sh
cd ~/PredictionIO-Java-SDK
mvn clean javadoc:javadoc
```
Examples
========
Download Source
---------------
If you have not already cloned the repository from the section above, do
```sh
cd ~
git clone git://github.com/PredictionIO/PredictionIO-Java-SDK.git
```
Running CLI Examples
--------------------
### Building
If your PredictionIO server is not at localhost, edit the source and replace
API URLs with your PredictionIO server host.
To build these examples you will need Maven 3+.
Run the following in each example's directory, e.g.
```sh
cd ~/PredictionIO-Java-SDK/examples/quickstart_import
mvn clean compile assembly:single
cd ~/PredictionIO-Java-SDK/examples/quickstart_show
mvn clean compile assembly:single
cd ~/PredictionIO-Java-SDK/examples/import
mvn clean compile assembly:single
```
These will create JAR files with all dependencies built in.
### Try It Now
For running the quick start example (quickstart_import and quickstart_show),
please refer to the "Quick Start" page of the PredictionIO documentation.
To import the provided small sample data for the import example using asynchronous calls:
```sh
cd ~/PredictionIO-Java-SDK/examples/import
java -jar target/sample-import-<latest version>-jar-with-dependencies.jar <your appId here> sampledata/sample1.txt
```
To check the data is imported properly, run
```sh
curl -i -X GET http://localhost:7070/events.json?appId=<your appId here>
```
Enjoy!
Support
=======
Forum
-----
https://groups.google.com/group/predictionio-user
Issue Tracker
-------------
https://predictionio.atlassian.net
If you are unsure whether a behavior is an issue, bringing it up in the forum is highly encouraged.