Posts

Showing posts with the label Parallel Gateway

jBPM Workflow Tutorial: ➕ Parallel Gateway (AND)

 🚀 Introduction The ➕ Parallel Gateway (AND) in jBPM is used to split a process into multiple branches that run at the same time , and to synchronize branches back together. Unlike ❌ Exclusive (XOR) or 🟢 Inclusive (OR), the Parallel Gateway does not evaluate conditions — it always executes all outgoing paths in parallel . This is useful for workflows where multiple tasks must happen together , such as sending notifications, logging events, and running approvals simultaneously . 🛠️ Prerequisites 💻 jBPM/Business Central & KIE Server installed ☕ JDK 11+ (JDK 17 also works) 👨‍💼 Roles with access to tasks (e.g., manager , analyst ) 🌐 Access: http://localhost:8080/business-central 📝 Step 1: Create a New Process 🔑 Log in to Business Central 📂 Create a project: parallel-gateway-demo ➕ Add Business Process: ParallelProcess Id: com.example.parallel Package: com.example 🎨 Step 2: Design the Workflow 🔵 Add a Start node ➕ Add...