We are currently working with a headless approach and I'm trying to estimate pros & cons of having more selectors in addition to 'model' at the cq:Page component. After digging through the request log and basically discovering what @Jörg_Hoh also mentioned here: https://cqdump.wordpress.com/2019/01/07/how-does-sling-resolve-an-aem-page-to-the-correct-resource-t... some special magic included within the cq:Page component redirects requests with special selector 'model' to the page-content where the sling-model-exporter ist registered.
It is easily possible to register sling-model-exporters to component-nodes if they have a proper sling:resourceType set but would it make sense to have this option on the page level too? Any dispatcher or security related issues maybe?
for instance
/content/somepage.model.json works
/content/somepage/jcr:content.customselector.json works
/content/somepage.customselector.json doesn't ?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi Christoph,
If I understand you correctly, you would just start registering customer exporters as selectors selectors to the cq/Page resourcetype.
Technically I don't see a problem with that, but just be aware, that I can execute this exporter on pages where it shouldn't work. That means you need to write some code to ensure that this exporter is just executed on the right "type" of page, and not on any page. If you register that SME directly to the correct resource type, Sling does that for you.
Hi Christoph,
If I understand you correctly, you would just start registering customer exporters as selectors selectors to the cq/Page resourcetype.
Technically I don't see a problem with that, but just be aware, that I can execute this exporter on pages where it shouldn't work. That means you need to write some code to ensure that this exporter is just executed on the right "type" of page, and not on any page. If you register that SME directly to the correct resource type, Sling does that for you.
Hi,
sling models work for page as well, if you do like /content/weretails/en.model.json
But if you looking for something custom, then it should be validated in terms of performance and error handling.
I tried to created similar just for fun - https://aemlab.blogspot.com/2019/07/get-json-response-of-aem-page.html
Hi @cwalter
This is true, the blog is created just for concept but it is not production ready.
The servlet can be changed to register for as page resource type(s).
The model selector used the sling model exporter, which will get executed if component model is using sling model exporters.But if you don't want to re-register everything then a servlet can be created to parse all node and return as json.
but if you want to implement the logic of model selector then you can look for the model.jsp at /libs/cq/Page/model.json.jsp
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies