This repository contains all Java related sources of the Dolphin Platform. Clients for other languages can be found in seperate repositories (JavaScript, AngularJS, Polymer).
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.
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.
For more information visit our website or the documentation.
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.5</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.5</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.5</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.
- Dolphin Platform website
- Documentation
- Getting started
- Tutorial
- JavaDoc
- Dolphin Platform @ Twitter
- StackOverflow
- Blog Posts
- JavaScript Github Repo
- Polymer Github Repo
- Spring Boot based Maven archetype
- KumuluzEE based Maven archetype
- Lazybones templates for Dolphin Platform
The project is released as open source under the Apache License Version 2.0
About Canoo