Global Properties/Constants

I need define some global constants to apply on all process instances.
is there some built-in Feature for this or should I create my own db-table?

Or can I make use the exisiting db-table “ACT_GE_PROPERTY”?

cheers

Hi @Yong_Lin,

The methods around ManagementService#setProperty give access to the ACT_GE_PROPERTY table. Alternatives to managing such constants in the database are managing them in constants in code or as system properties. I would choose that approach that makes it easiest for you to maintain the properties.

Cheers,
Thorben

1 Like

Hi Thorben,

thanks a lot for your advice!