AEM Sling Model injection and annotation | AEM Community Blog Seeding

AEM Sling Model injection and annotation by Rashidjorvee
Abstract
In this article, we will understand what all are the ways to reading authored values of AEM component using sling model in AEM
Using ValueMapValue annotation of package org.apache.sling.models.annotations.injectorspecific
@ValueMapValue(injectionStrategy = InjectionStrategy.OPTIONAL)
private String classStartDateLabel;
Using Inject annotation of package javax.inject
@Inject
@Via("resource")
@Optional
private String classStartDateLabel;
Getter method for this injection
public String getClassStartDateLabel() {
return classStartDateLabel;
}
Read Full Blog
AEM Sling Model injection and annotation
Q&A
Please use this thread to ask the related questions.
