Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
We would like to run multiple store binders plugins in a single store binder selection. This would open up more use cases with the ability to store form data into multiple destinations without the need for relying on other approaches such as JSON Tool or SOAP Tool.
Joget has a plugin type called Form Store Binder Plugin. We will develop one based on this plugin category to support multiple selections and execution of store binders to store form data.
To develop a Multi Store binders, we will need a multi-selector in a grid form and a text editor for additional notes for app designers.
Binders: Displays a list of store binders available.
Comments: Additional notes users might wish to add.
All submitted data will store accordingly based on the configuration of each of the store binders selected.
We can refer to the implementation of other available Form Store Binder plugins. We can also refer to how Multi Tools plugin for the design:
...
We need to always have our Joget Workflow Source Code ready and built by following this guideline.
...
Open the maven project with your favorite IDE. We will be using NetBeans.
Create a "MultiStoreBinders" class under "org.joget.marketplace" package. Then, extend the class with org.joget.apps.form.model.FormBinder abstract class.
...
Please refer to Form Store Binder Plugin.
As usual, we have to implement all the abstract methods. We will be using the AppPluginUtil.getMessage method to support i18n and using the constant variable MESSAGE_PATH for the message resource bundle directory.
...
Code Block | ||
---|---|---|
| ||
public FormRowSet store(Element element, FormRowSet rows, FormData formData) { final Object[] binders = (Object[]) getProperty("binders"); if (binders != null && binders.length > 0) { Thread newThread; final PluginManager pluginManager = (PluginManager) AppUtil.getApplicationContext().getBean("pluginManager"); newThread = new PluginThread(new Runnable() { public void run() { for (Object binder : binders) { if (binder != null && binder instanceof Map) { Map binderMap = (Map) binder; if (binderMap != null && binderMap.containsKey("className") && !binderMap.get("className").toString().isEmpty()) { String className = binderMap.get("className").toString(); FormStoreBinder p = (FormStoreBinder) pluginManager.getPlugin(className); if (p != null) { Map properties = new HashMap(); properties.putAll((Map) binderMap.get("properties")); if (p instanceof PropertyEditable) { ((PropertyEditable) p).setProperties(properties); } p.store(element, rows, formData); } } } } } }); newThread.start(); } return null; } |
Our plugin is using dbcp, javax.servlet.http.HttpServletRequest and javax.servlet.http.HttpServletResponse class, so we will need to add jsp-api and commons-dbcp library to our POM file.
...
Code Block | ||
---|---|---|
| ||
<!-- Change plugin specific dependencies here --> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20080701</version> <scope>provided</scope> </dependency> <!-- End change plugin specific dependencies here --> |
We are using i18n message key in getLabel and getDescription method. We also used i18n message key in our properties options definition as well. So, we will need to create a message resource bundle properties file for our plugin.
...
Code Block | ||
---|---|---|
| ||
org.joget.marketplace.MultiStoreBinders.pluginLabel=multi store binders org.joget.marketplace.MultiStoreBinders.pluginDesc=Enable the use of multiple store binders org.joget.marketplace.MultiStoreBinders.config=Configure multi store binders org.joget.marketplace.MultiStoreBinders.storeBinder=Store Binders org.joget.marketplace.MultiStoreBinders.comment=Comment |
We will have to register our plugin class in Activator class (Auto generated in the same class package) to tell Felix Framework that this is a plugin.
...
Code Block | ||
---|---|---|
| ||
public void start(BundleContext context) { registrationList = new ArrayList<ServiceRegistration>(); //Register plugin here registrationList.add(context.registerService(MultiStoreBinders.class.getName(), new MultiStoreBinders(), null)); } |
Let build our plugin. Once the building process is done, we will found a "multi_store_binder-7.0.0.jar" file is created under the "multi_store_binder/target" directory.
...
It works! Please remember to test the other features of the plugin as well.
You can download the source code from multi_store_binder.zip
...