Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

AEM Sling Model injection and annotation | AEM Community Blog Seeding

Avatar

Administrator

BlogImage.jpg

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.



Kautuk Sahni
0 Replies