How can i pass custom properties from application.yml (config file in spring boot) to bpmn running on springboot.
Example client urls
Hi @teja_polisetty,
you can add configuration properties to your Spring Bean: Core Features
Then you can access the beans with the expression language: Expression Language | docs.camunda.org.
Hope that helps, Ingo
thanks for the reply @Ingo_Richtsmeier
But bean-based access to config values will not allow me to modify the config value in runtime, just like how we can modify the value of any config in the spring-boot config server.
Are there any other alternatives that you can suggest for passing configuration to workflows/bpmn?
Hi @teja_polisetty,
if you need to change it during runtime, you can implement a bean reading the value from the database.
I don’t know if Spring Boot offers an alternative to overwrite config values in main memory.
Hope this helps, Ingo