jbavsc - jBPM Business Application Extension for Visual Studio CodeVisual Studio Code extension used to generate your jBPM Business Applications. This extension tries to provide a full experience when developing jBPM Business Apps inside Visual Studio Code. Currently it provides in-editor commands to:
If you rather watch a videos on all the features then read the docs here is a list: Table of ContentsCommandsAfter installing this extension you will have two new commands available:
These commands can be accessed via the Command Panellete. To open the Command Pallette use F5 for Windows or ⇧⌘P on OSX). The extension also updates the explorer context menu (menu shown when you right-click on a file in your project). For files with extensions .bpmn or .bpmn2 it adds a new menu for the process quick preview. UsageThis section explains in detail how to use this extension and its commands. Generate new appNote: you must be online to generate the business app. If you are not online the extension will try to generate the app and will notify you that it can't do that. To generate a new jBPM Business application open VS Code in a workspace (directory) where you would like to generate it, for example:
Now open the Command Palette in VS Code and enter in the command:
Generation OptionsYou can chose to either generate your application using default settings, or can customize it via configurations: After your selection and before the app gets generated you will be presented with a confirmation dialog: Selecting the configuration generation option will guide you though a number of steps and then generate your business application in the current working directory. App generation via ConfigurationIf you chose to configure your jBPM Business app you want to generate you will be guided through a 5 step process:
Generated app in your working directoryAfter the generation process this extension will generate your jBPM Business app zip file and also extract it into your current working directory. You will see the generated app modules: Start your appYou can start your business app in VS Code as well, for that open the VS Code Terminal first, then go into your apps *service** directory. In here you will find the various launch scripts for different Operating systems. So for example on Unix/OSX you would do: This will build your kjar, model, and services modules and launch your app (which is a spring boot app). You will be able to access it in browser for example under
for more infomation about your business app go to the jbpm.org. Debug your appImportant In order to debug your app currently there is need to update your apps DefaultWebSecurityConfig.java file which is generted for you by default. This need will no longer be needed once jBPM community version 7.18.0.Final is released. For now you have to go to your apps service directory and edit src/main/resources/DefaultWebSecurityConfig.java. Cut/paste the code from this Gist: https://gist.github.com/tsurdilo/3fe68ec089e226a007bdfc4852e293e9 These changes will enable CORS in your business app and will aloow the debug console to be able to get information from your running business application. Without this change currently your debug console will not be able to query information from your business app. Again, once the new community jBPM version is released (should be within a month) when you generate your business app this change will no longer be necessary as the code mentioned in the gist will be included there by default. Once your business app is started you can start debugging it.It makes sense however before to add some assets into your kjar module (business rules, business processes etc) which then you can debug. Debugging feature will work without those, however there will be no processes to start and debug. To add business processes to your business application add bpmn2 processes into your apps kjar module in its src/main/resources folder and re-start your business app with the previously mentioned launch scripts. This will build and compile them so they are available when your app launches. To start debugging your app launch the VS Code Command Palette and run the "Debug your jBPM Business Application" command. Somilar to when generating your app you will first be presented with three quick steps asking to you provide info on where your business app is running: By default your business app authentication user/password for the rest api are user/user. If you have changed that in your code, you need to change the default values to reflrect your changes. After these steps the extension will open a new editor window with your debug console: The debug console is made up of 5 collapsible sections:
It allows you to view the process definitions image (clicking on the View button): It also allows you to view the process definitions variables: As well as start a process, which will then bring up the process form where you can fill in the initial variable values and start it:
Also allows you to view the current execution state of your process instance: You can view the current values of all your process variables and also change/update their values for debugging purposes: You can also abort a process instance if you wish: And also allow you to advance process execution by working on currently active tasks:
You can acknowledge an error, basically saying "yes, I will work to fix this", which will remove it from the error list. Process Quick ViewTo preview a business process visually (.bpmn, or .bpmn2 files) right-click on one of those files in your project and select "Process Quick View": This will open a new editor window with the business process shown visually (using the camunda bpmn editor in preview mode): The process view is not editable (this will come soon!). On top-right of the preview window is the "Save Process SVG" button which you can click to store the SVG representation of the process: This is useful as then it can be viewed in the process debugging section of the extension. Clicking on this button will create a new file or update an existing one. The naming of the generated svg file is process-id-svg.svg which conforms to what the jBPM execution server expects so it can find it given the process id of the process definition. Building from sourceIf you do not want to get this extension from the Marketplace or would like to build and test the latest changes/updates locally follow these steps:
To install vsce run:
to uninstall the extension run:
ContributingThis extension is open-source and free to use to anyone. All/any contributions are very welcome and much needed in order to make this extension much better. Best way to contribute is to create Pull Request(s) on the github project. |