The Imixs-jsf-example provides a simple web application running the imixs workflow engine. You can take this application as a scaffolding for your own web application based on the Imixs-Workflow project.
The sample application provides a simple workflow model for a 'Ticket-Management'. This workflow is available in the file /src/workflow/ticket.bpmn. You can load the bpmn model using the Imixs-BPMN Modeling Tool.
The example also includes a Docker container to start the application out of the box. See the section Docker below.
If you need any help, start a discussion or create an new issue in the issue-tracker.
The following section provides information how to build the project form sources and how to deploy the application on a Jakarta EE server. If you just want to take a first look, you can run the application with docker. Find details below in the section Docker below.
The Imixs-jsf-example is based on Maven to build the project from sources, check out the sources from Github and run the maven command:
$ mvn clean install
You can also download the application as an deployable artifact from the latest release.
To deploy the application successfully, the application sever need to provide a valid database pool named 'jdbc/workflow' and a JAAS security configuration named 'imixsrealm'. You will find an installation guide here.
To avoid a manual deployment, see the section Docker below showing how you can start the application from docker.
Imixs-Workflow is a human-centric workflow engine which means that each actor need to authenticate against the service to interact. The Workflow Engine is based on Jakarta EE and so the authentication is also standardized by the JAAS Specification which supports different authentication solutions like LDAP, Database, SSO and more.
The default Docker setup in this project provides a set of predefined users which can be used for testing purpose. The test users are stored in a separate user and roles properties file named 'sampleapp-roles.roperties' and 'sampleapp-users.properties'. The property files are configured in a file based security domain within the server configuration. See the following list of predefined test user accounts:
User | Role | Password |
---|---|---|
admin | IMIXS-WORKFLOW-Manager | adminadmin |
manfred | IMIXS-WORKFLOW-Manager | password |
alex | IMIXS-WORKFLOW-Manager | password |
anna | IMIXS-WORKFLOW-Author | password |
marty | IMIXS-WORKFLOW-Author | password |
melman | IMIXS-WORKFLOW-Author | password |
gloria | IMIXS-WORKFLOW-Author | password |
skipper | IMIXS-WORKFLOW-Author | password |
kowalski | IMIXS-WORKFLOW-Author | password |
private | IMIXS-WORKFLOW-Author | password |
rico | IMIXS-WORKFLOW-Author | password |
You can add additional accounts or change the default account later, by updated the files "sampleapp-roles.properties" and "sampleapp-users.properties". You can also configure a different custom security realm (e.g. LDAP or Database).
You will find more information about the security concept of the Imixs-Workflow Deployent guide.
After deployment you can start the sample application from:
Imixs-Workflow provides a powerfull Rest API. Also the JSF-Sample Application has included this API which is based on the jax-rs specification. To access the rest api in this sample application use the root api URL:
http://localhost:8080/api/
Find details about the Imixs REST api here.
After you have successful deployed your application you can upload the Ticket workflow model via the Imixs-REST Service API.
Use the following curl command to upload the model from your workspace:
$ curl --user admin:adminadmin --request POST -Tsrc/workflow/ticket.bpmn http://localhost:8080/api/model/bpmn
The BPMN Model is part of the project and located under /src/workflow/ticket.bpmn
NOTE: cURL isn't installed in Windows by default. See the Use Curl on Windows discussion on stackoverflow.
Imixs-Workflow provides a reporting interface which can be accessed by the Imixs Rest API. A report definition can be created with the Eclipse Plug-in "Imixs-Report" which is part of the Imixs-BPMN project.
A new report definition can be uploaded with the curl commandline tool:
$ curl --user admin:adminpassword --request POST -H "Content-Type: application/xml" -Tsrc/workflow/tickets.imixs-report http://localhost:8080/api/report
The Imixs-JSF-Example includes a Docker Container to run the sample application in a Docker container. The docker image is based on the docker image imixs/wildfly.
To run Sample Application in a Docker container, the container need to be linked to a postgreSQL database container. The database connection is configured in the Wildfly standalone.xml file and can be customized to any other database system.
Before you can start the container, build the application and the docker image from sources:
$ mvn clean install -Pdocker-build
After you have build the application and the Docker image you can start the application. The workflow engine needs a SQL Database. Both containers can be started with one docker-compose command
$ docker-compose up
See the docker-compose.yml file for details
The Docker container creates user accounts for testing with the following userid/password:
admin=adminpassword
manfred=password
anna=password
After your application was started, the test model 'ticket.bpmn' is automatically installed. You run the application from your web browser:
http://localhost:8080/
If you want to upload your own BPMN model (or update the ticket.bpmn) you can use the curl tool:
$ curl --user admin:adminpassword --request POST -Tticket.bpmn http://localhost:8080/api/model/bpmn
During development you can use the docker-compose-dev.yml file. This stack maps the src/docker/deployments folder to the wildfly auto deploy directory.
$ docker-compose -f docker-compose-dev.yml up
you may have to grant the deployment folder first to allow the docker non privileged user to access this location.
$ sudo chmod 777 src/docker/deployments/
The Imixs-JSF-Sample application includes also a setup to run Payara on Docker. To run the Imixs-JSF-Sample application on the a Payara Server with Docker run:
$ mvn clean install -Pdocker-build-payara
$ docker-compose -f docker-compose-payara.yml up
You can find the configuration details of payara server in /src/docker/configuration/payara/
To run the Imixs-JSF-Sample application on the Open Liberty Application Server with Docker run:
$ mvn clean install -Pdocker-build-openliberty
$ docker-compose -f docker-compose-openliberty.yml up
The application running on OpenLiberty is available from:
http://localhost:9080/
You can find the configuration details of open liberty server in /src/docker/configuration/openliberty/
To run the Imixs-JSF-Sample application on the Apache TomEE Application Server with Docker run:
$ mvn clean install -Pdocker-build-tomee
$ docker-compose -f docker-compose-tomee.yml up
You can find the configuration details of payara server in /src/docker/configuration/tomee/