Posts

Showing posts from March, 2018

AEM 6.3 | MSM Extended | JCR Properties Rollout

Image
AEM OOB excludes certain properties like jcr:title, jcr:description, cq:designPath  in live copy content rollout and  update . These properties are configured and controlled by O SGi configuration and can be modified accordingly.  Step 1 : Go to Configuration Manager Search for CQ MSM Content Update Action Step 2 : Open the OSGI configuration and it is as below snapshot. com.day.cq.wcm.msm.impl.actions.ContentUpdateActionFactory Step 3 : Override in application level OSGi folders(runmodes) as below. com.day.cq.wcm.msm.impl.actions.ContentUpdateActionFactory.config and do the modifications as needed in  Excluded Page Properties . Ex: By default  jcr:.* is excluded and if a requirement is to e nable jcr title and description, we have below expression to be  jcr:(?!(title|description)$).*                      Step 4: Content ready for Rollout.