What is a Plugin?
Plugins are software extensions that add capabilities to an app.
Joget Workflow plugins -
- allow Allows the functionality of the system to be extended dynamically.
- To achieve bring about extensibility and adaptability of product features.
Any kind of integration that is not yet available in Joget Workflow as a standard feature can be accomplished by developing a plugin, without breaking the fundamental core of the product.
Joget Workflow plugin architecture
...
supports 2
...
types of plugin
...
- Standard Java Plugin
- Dynamic OSGi Plugin
Plugin Architecture Image Removed
Figure 1: Joget Plugin Architecturestructures:
...
- Build as a standard Java JAR
- Plugin classes should place in a package name start with “org.joget”
- Make JAR available in the Java classpath e.g. place it under WEB-INF/lib
- Requires restarting the JVM for deployment or changes
- May cause library version conflicts with base libraries or other plugins
- Easier to develop and test using normal Java classes and libraries
- Dynamic OSGi Plugin
- Build as an OSGi (Open Services Gateway initiative framework) JAR bundle
- Deploy JAR using the Manage Plugins in the Web Console
- Supports dynamic loading/unloading/reloading without restarting
- Runs in isolated mode thus prevents library version conflict with base libraries or other plugins
- More difficult to develop and test due to OSGi configuration and isolation
Technology powering this structure: Apache Felix
Table of Content