Hi Arin,
Justin the original creator of Sling Model Framework does in depth explanation of how Sling Model Resolution works in his slides[1]
Sling models by Justin Edelson (slideshare.net)
Regards,
Peter
Hi Neerajsa,
Standard Apache HTTP 2.4 would do,
apt-get install apache2 would do, followed by installing Dispatcher[1[
[1] Installing Dispatcher | Adobe Experience Manager
Regards,
Peter
Hi Manikanta,
First of all we can configure AEM to open in Touch UI by default [1]
In addition we can configure Sling Redirect to redirect any request into cf to editor.html
Thus any content author who may have bookmarked old page will be redirected to TouchUI alternative.
[1] user interface -...
Hi Vaishnav,
We normally get these errors when maven versions are incorrect or maven dependencies are set in the wrong order,
Please cross check your maven imports against this sample WKND project:
GitHub - adobe/aem-guides-wknd: Tutorial Code companion for Getting Started Developing with AEM Site...
Hi Mario,
Once you get hold of your object you can ask Jackson to render the object for you:
JsonNode jsonNode = new ObjectMapper().valueToTree(product);
String json = jsonNode.writeValueAsString(jsonNode);
Regards,
Peter
Hi TB3dock,
1.
Config's that communicate with Dispatcher.so module mostly live in farms,
Apache HTTP config's reside in vhosts.
As per Adobe Docs here's good explanation of the farm files.
Explanation of Dispatcher configuration files | Adobe Experience Manager
2. We can put absolutely everyth...
Hi Mario,
Inside execute method of your workflow, you can use ResorceResolver rr; to get resource and then ask adaptTo method to get your Model.
Something along these lines would work:
Resource productResource = rr.getResourceResolver().getResource(workflow.getWorkflowData().getPayload().toStr...