Custom Run Modes in AEMaaCS
Published
Changes in Run Modes in AEMaaCS
- Predefined Run Modes: Environments are standardized with predefined set: RDE, Dev, Stage, and Prod. Each environment consists of Author, Publish, and Preview service.
- SlingSettingsService: The
getRunModes()
method returns either "author" or "publish", depending on the instance type. However, it does not indicate the specific environment, such as Dev, Stage, or Prod. - Preview Service: AEMaaCS provides Preview service, allows previewing the final website experience before content is published and made publicly available.
config.pusbish.dev / com.aem.demo.core.services.impl.AppConfigServiceImpl.cfg.json
{
"app.name": "aem-demo",
"api.endpoint": "https://dev.google.com",
"client.id": "8TfyfkUAB481AxOfn4UrqIyWIStKrTm8Jl",
"client.secret": "8TxmpkXAPRtLiOHIFHzjx4uKHlm1soAvO7I"
}
Based on above configuration, most likely
app.name
will be same for both DEV environments. Others are supposed to be different for each DEV environment.config.pusbish.dev / com.aem.demo.core.services.impl.AppConfigServiceImpl.cfg.json
{
"app.name": "aem-demo",
"api.endpoint": "$[env:API_ENDPOINT]",
"client.id": "$[secret:CLIENT_ID]",
"client.secret": "$[secret:CLIENT_SECRET]"
}
Now,
api.endpoint
, client.id
, and client.secret
will be retrieved from environment variables and loaded dynamically based on the environment in which the instance is running.SlingSettingsService
is used to determine the run mode of the instance. In AEM 6.5, you can define custom run modes e.g., uat
and getRunModes()
will return both author
and uat
as run mode. However, in AEMaaCS, you will get the service only either "author" or "publish", no information about environment.Environment.java
String envName = System.getenv("AEM_ENV_NAME");
Depending on your project requirement, you can use the environment variable as a property in OSGi configuration as well. However, it is highly recommended to avoid environment specific business logic in your code.