How to add run mode to specific class in AEM | Community
Skip to main content
Level 2
June 3, 2022
Solved

How to add run mode to specific class in AEM

  • June 3, 2022
  • 4 replies
  • 1114 views

Lets say I have one service like this:

 

@8220494(service = CurrenciesMongoWriter.class) public class CurrenciesMongoWriterImpl implements CurrenciesMongoWriter { ... ... }

How to add run mode to it so I can test it in dev, prod and etc.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by arunpatidar

If you have run mode setup in AEM, then you can check run mode using

SLING API - https://developer.adobe.com/experience-manager/reference-materials/6-5/javadoc/org/apache/sling/settings/SlingSettingsService.html 

 

@Component
public class MyService {

    @Reference
    private SlingSettingsService slingSettingsService;

    private boolean isPublish() {
        return this.slingSettingsService.getRunModes().contains("publish");
    }
}

 

AND

If you want to resolve this service only for few run mode then you can use configurationPolicy property, that means this service will only be resolved if runmode specific repository Configurations are available

 

 

@Component(
service = CurrenciesMongoWriter.class,
immediate = true,
configurationPolicy = ConfigurationPolicy.REQUIRE)

 

4 replies

Adobe Employee
June 3, 2022

Can you tell me what is your case and what you are trying to achieve ?

Level 2
June 3, 2022

I have this service:

 

@Component(service = CurrenciesMongoWriter.class)
public class CurrenciesMongoWriterImpl implements CurrenciesMongoWriter {

How to make it to run in dev mode for example throught configuration

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
June 3, 2022

If you have run mode setup in AEM, then you can check run mode using

SLING API - https://developer.adobe.com/experience-manager/reference-materials/6-5/javadoc/org/apache/sling/settings/SlingSettingsService.html 

 

@Component
public class MyService {

    @Reference
    private SlingSettingsService slingSettingsService;

    private boolean isPublish() {
        return this.slingSettingsService.getRunModes().contains("publish");
    }
}

 

AND

If you want to resolve this service only for few run mode then you can use configurationPolicy property, that means this service will only be resolved if runmode specific repository Configurations are available

 

 

@Component(
service = CurrenciesMongoWriter.class,
immediate = true,
configurationPolicy = ConfigurationPolicy.REQUIRE)

 

Arun Patidar
DEBAL_DAS
New Member
June 3, 2022

https://sling.apache.org/apidocs/sling9/org/apache/sling/settings/SlingSettingsService.html , SlingSettingsService API has getRunModes() methods, it will help you to deal with run mode programatically.

Debal Das, Senior AEM Consultant
SantoshSai
Community Advisor
Community Advisor
June 3, 2022

Hi @stefanjank 

I have published blog on specific topic - Run Modes along with practical demo video, please visit this blog: https://www.techinnovia.com/run-modes/ 

Hope it helps!

Regards,
Santosh

Santosh Sai