Abstract
This tutorial covers the end-to-end creation of a custom AEM Byline Component that displays content authored in a Dialog, and explores developing a Sling Model to encapsulate business logic that populates the component's HTL.
Prerequisites
Review the required tooling and instructions for setting up a local development environment .
Starter Project
Note: If you have been following along in previous parts of the tutorial, you will notice that the Starter Project for this chapter accelerates the implementation. It includes a few more templates and much more content. As a bonus, feel free to explore the new content and other areas of the implementation, outside of the custom component development.
Check out the base-line code the tutorial builds on:
1. Clone the github.com/adobe/aem-guides-wknd repository.
2. Check out the custom-component/start branch
$ git clone git@github.com:adobe/aem-guides-wknd.git ~/code/aem-guides-wknd
$ cd ~/code/aem-guides-wknd
$ git checkout custom-component/start
3. Deploy code base to a local AEM instance using your Maven skills:
$ cd ~/code/aem-guides-wknd
$ mvn clean install -PautoInstallSinglePackage
Read Full Blog
Q&A
Please use this thread to ask the related questions.
Kautuk Sahni