Injector returning OnDemandReaderRequest adaptable object everytime | Community
Skip to main content
Naga_Seran
Level 2
May 8, 2018
Solved

Injector returning OnDemandReaderRequest adaptable object everytime

  • May 8, 2018
  • 4 replies
  • 1632 views

Hi Team,

We are in process of upgrading our application from AEM 6.1 version to 6.3 version.Our application using injector, to inject custom object data into our homepage.We found that after AEM 6.3,OnDemandReaderRequest adapatable object is returning everytime, rather than resource object. Please find below our homepage injector class

@Component

@Service

@Property(name = Constants.SERVICE_RANKING, intValue = 1000)

public class HomePageInjector extends AbstractInjector implements Injector {

    @Override

    public Object getValue(Object adaptable, String name, Type declaredType, AnnotatedElement annotatedElement, DisposalCallbackRegistry disposalCallbackRegistry) {

if (adaptable instanceof Resource) {

            System.out.println("resource");

        } else {

            System.out.println(adaptable.adaptable.getClass().toString());

        }

}

AEM 6.1 Ouput:

resource

AEM6.3 output:

org.apache.sling.scripting.core.impl.helper.OnDemandReaderRequest.

Please help

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Peter_Puzanovs

Dear Naga,

You should be able to check whether adaptable is Resource or in your case OnDemandReaderRequest[1] which essentially is a SlingHttpServletRequest that can be adapted to Resource, therefore, your standard logic for resource should still work.

E.g.:

if(adaptable instanceof Resource || adaptable instanceof SlingHttpServletRequest)

GC: OnDemandReaderRequest - org.apache.sling.scripting.core.impl.helper.OnDemandReaderRequest (.java) - GrepCode Class S…

Regards,

Peter

4 replies

Peter_Puzanovs
Community Advisor
Community Advisor
May 8, 2018

Dear Naga,

You should be able to check whether adaptable is Resource or in your case OnDemandReaderRequest which essentially is a request that can be adapted to Resource, therefore, your standard logic for resource should still work.

Regards,

Peter

Peter_Puzanovs
Community Advisor
Peter_PuzanovsCommunity AdvisorAccepted solution
Community Advisor
May 8, 2018

Dear Naga,

You should be able to check whether adaptable is Resource or in your case OnDemandReaderRequest[1] which essentially is a SlingHttpServletRequest that can be adapted to Resource, therefore, your standard logic for resource should still work.

E.g.:

if(adaptable instanceof Resource || adaptable instanceof SlingHttpServletRequest)

GC: OnDemandReaderRequest - org.apache.sling.scripting.core.impl.helper.OnDemandReaderRequest (.java) - GrepCode Class S…

Regards,

Peter

smacdonald2008
Level 10
May 8, 2018

NIce answer!

krishna_sai
Community Advisor
Community Advisor
May 16, 2022

Hi @peter_puzanovs @smacdonald2008 I am facing the similar issue. In my sling model I have adaptable as SlingHttpServletRequest.class and @SlingObject SlingHttpServletRequest request object . but I am getting request as org.apache.sling.scripting.core.impl.helper.OnDemandReaderRequest instead of org.apache.sling.api.SlingHttpServletRequest.

Could you please help me here if what I am doing wrong. Thanks for the help