Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Alternatives for Active Objects and ApplicationProperties

Mik Wawrzyniak November 10, 2020

Hello,

We would like to start the process of adapting our plugin to JIRA Data Center.

Currently, the plugin uses Active Objects and ApplicationProperties to store various user settings and information.

I would like to ask for information if Active Objects and ApplicationProperties can still be used, and if not, is there any suggested alternative for them?

Regards,
Mik

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Maciej Swinarski
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 10, 2020

Hi,

I would suggest using AO with a cache (replicated by invalidation). 

public SomeManager(CacheManager cacheManager) {  
cache = cacheManager.getCache(
getClass().getName() + ".cache", //cache name
this::loadValueForKey, //cache loader backed by AO
new CacheSettingsBuilder()
.remote()
.replicateViaInvalidation()
.unflushable()
.build(); // cache replicated via invalidation
)
 

Depending on amount of data and usage pattern ApplicationProperties may not be optimal (underlying data store based on the OfBiz PropertySet, shared db structure and cache between all other PropertySet clients).

Regards,

Mac

Mik Wawrzyniak November 10, 2020

Hi Mac, thanks for the quick reply.

There is very little data saved with AO.
Only one entity interface and just a few values (plug-in settings) saved with ApplicationProperties. Are changes also suggested in this case?

Regards,

Mik

TAGS
AUG Leaders

Atlassian Community Events