Workshop 1 @ CamundaCon 2019
In this Workshipshop you learn how to use Spring Boot to create a self-contained Camunda BPM Workflow application.
In a nutshell, you are guided through the following topics:
- Creating a New Project
- Connecting to a Database
- Modeling & Executing a Workflow
- Customizing the Webapps
- Securing the REST API
⚠️ Heads-Up!Make sure to fulfill the prerequisites before you attend the workshop!
- Docker for Mac or Windows
- Java JDK (8+)
- Apache Maven
- Camunda Modeler
- Java IDE (e. g. IntelliJ IDEA)
Please pull the image postgres
by running the following command:
docker pull postgres
- Download the Project Skeleton
- Unpack the ZIP file
- Open the project skeleton folder on your command line:
cd ./project
- Download the dependencies with Maven by running the following command inside the project folder:
mvn clean install
- Watch out for similar output:
[INFO] Installing $HOME/project/target/spring-boot-workshop-0.0.1-SNAPSHOT.jar to ~/.m2/com/camundacon/workshop/spring-boot-workshop/0.0.1-SNAPSHOT/spring-boot-workshop-0.0.1-SNAPSHOT.jar
[INFO] Installing $HOME/project/pom.xml to ~/.m2/com/camundacon/workshop/spring-boot-workshop/0.0.1-SNAPSHOT/spring-boot-workshop-0.0.1-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 54.963 s
[INFO] Finished at: 2019-09-07T11:47:41+02:00
[INFO] ------------------------------------------------------------------------