Would it be possible to use the camunda as stateless? I want to create a springboot application with service tasks only, would not like to save data, or create human tasks, is it possible to work without a database? Could I just instantiate the camunda dependency on my pom.xml without a database? Is there any example on github that I can see?
You need a database of some kind to run camunda.
But if you want, you can use an in memory H2 database and it’s pretty easy to create a synchronous process. Considering you’re only using service tasks assuming they’re just classes in your spring boot application.