Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

getServiceResourceResolver with unique name

Avatar

Level 1

Hi to all,

we are using ResourceResolverFactory.getServiceResourceResolver from different threads and different event listener with a identical identifier, e.g.

Map<String, Object> authenticationProperties = new HashMap<>();

authenticationProperties.put(ResourceResolverFactory.SUBSERVICE, "our_id");

ret = resourceResolverFactory.getServiceResourceResolver(authenticationProperties);

We don't share the service resource resolver between thread or listeners. Every call to the listener or every thread calls the code snippet from above to get his own SRR and is closing the SRR when work is done.

Is this possible without running into problems when a thread or a event will be fired in parallel?

Or should we use different identifiers for event listener A, event listener B, background thread A, ...

Thanks

Uwe

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

AFAIK the subservice ID does not have to be unique, that means you can use the same snippet for multiple times.

Jörg

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

AFAIK the subservice ID does not have to be unique, that means you can use the same snippet for multiple times.

Jörg