Process deployment using shared process engine

Hi,

I wanted to deploy new process using shared process engine. i had one ProcessApplication class, can anybody guide me which method i should override to deploy new process definition? Also let me know whether i can used camunda rest engine to instantiate process deployed above.

You can overwrite the method #createDeployment() within your process application class. As alternative you could also use a processes.xml 1.

Yes, it is possible to start a process instance by using the REST api, see 2.

Cheers,
Roman

1 Like

Thanks roman.
Now i am able to deploy static process.

Still i am facing one issue , Actually i have create process definition run time and deploy it in container.
can we create/modify process runtime using processapplication?
can you please suggest some example link ?