/dolphin-platform

This repository contains all java related sources of the Dolphin Platform. For more information visit http://www.dolphin-platform.io

Primary LanguageJavaApache License 2.0Apache-2.0

Dolphin Platform Travis Build Maven Central

This repository contains all Java related sources of the Dolphin Platform. Clients for other languages can be found in seperate repositories (JavaScript, AngularJS, Polymer).

Dolphin Platform Logo

The Dolphin Platform is a framework that implements the presentation model pattern and provides a modern way to create enterprise applications. The Platform provides several client implementations that all can be used in combination with a general sever API.

Several clients

By doing so you can create enterprise application with a single server and several desktop, web and mobile client implementations. Here the Dolphin Platforms define a mechanism to automatically snchronize models between the server and the client.

Model sync

For more information visit our website.

How to use it

You can simply integrate Dolphin Platform in a Spring based application. To do so you only need to add our Spring plugin:

<dependency>
    <groupId>com.canoo.dolphin-platform</groupId>
    <artifactId>dolphin-platform-server-spring</artifactId>
    <version>0.8.3</version>
</dependency>

Next to Spring we provide support for JavaEE. To do so you only need to add our JavaEE plugin:

<dependency>
    <groupId>com.canoo.dolphin-platform</groupId>
    <artifactId>dolphin-platform-server-javaee</artifactId>
    <version>0.8.3</version>
</dependency>

For a JavaFX based client you need to add the following dependency:

<dependency>
    <groupId>com.canoo.dolphin-platform</groupId>
    <artifactId>dolphin-platform-client-javafx</artifactId>
    <version>0.8.3</version>
</dependency>

Next to JavaFX you can use Dolphin Platform in any web client. You can find additonal information in the readme of the client libraries: (JavaScript or Polymer)

In addition you can use our Maven archetype to create a complete server-client-project based on Dolphin Platform. If you want to create your new project from command line by using an archetype you can simply call this Maven command and select one of the shown Dolphin Platform archetypes:

mvn archetype:generate -Dfilter=com.canoo.dolphin-platform:

Currently the projects contains only a JavaFX based client but it’s planned to add a Polymer based client to the archetypes with the next release.

A complete "Getting started" documentation can be found here.

Useful links