Hi,
Good day everyone.
I’ve created a simple process using Business Central that includes only a Script Task with a Java System.out.println
statement. This process runs successfully in a Spring Boot application.
However, when I add a custom WorkItem (specifically, an "Execute SQL" WorkItem), the process fails to run in Spring Boot.
Could anyone please help me with the necessary configuration required in a Spring Boot project to ensure that processes with custom WorkItems (like Execute SQL) run successfully?
For reference, I am using the following code to start the process:
@GetMapping("/start-process")
public String startProcess() {
kieSession.startProcess("doo.voo");
return "Process started successfully!";
} Thanks in advance! I have attached jbpmcofig class for reference.