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
Solved! Go to Solution.
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)
Regards,
Peter
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
Views
Replies
Total Likes
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)
Regards,
Peter
NIce answer!
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Views
Likes
Replies