After several attempts its weird to see a servlet stays in satisfied state and not active.
1. what are the possible AEM servlet states?
2. How do we move a servlet from satisfied to active state? The component annotation already has immediate=true
Views
Replies
Total Likes
Hi @Explorer1
It looks like you are using some service in your servlet, eg.
@Reference private CustomReferenceService customReferenceService;
Please ensure that all the services being used in servlet is in active state.
Also I believe you must have a Impl class that is implementing the service. So try to use
@Reference private CustomReferenceServiceImpl customReferenceServiceImpl;
Hope that helps!
Regards,
Santosh
@Explorer1 Go to bundle and click it, it should show you the service and if any unresolved dependency
Hi,
Check the reference classes.
Try to remove the references and check, the only reason is unresolved dependency.
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies