I have an OSGI Bundle installed in AEM 6.3, that gets in resolved state on its own time and again without any error and I have to activate it manually every time. What might be the issue?
Views
Replies
Total Likes
Check the error.log file and grep for the bundle name to check for various livecycles of the bundle. Lastly, you can alsdo setup a DEBUG logger on the bundle package which is not getting started.
How to grep the bundle?
hi ,
Please check this link to grep the bundle
GitHub - takkanm/bundler-grep: add `grep` subcommand to bundler
Can you post your error log if it is fine. There might be some hint
If a mandantory (non-optional) dependency of the bundle is unresolved, it will stay on installed until the dependency gets resolved. If there is any dependencies that is not getting resolved, please try making them optional to see the bundle getting started or not.
Im having one such scenario. I need to make the resource resolver activate first and only then my bundle should get activated. Im looking for some implementable ideas.
It just came to my knowledge that my bundle is dependent on the resource resolver bundle. So, if the resource resolver bundle is not active when my bundle tries to get activated, then my bundle fails to gets activated and stays in resolved state. And, when I manually activate it, by that time resource resolver is already in activated state and thus my bundle also moves to activate state without any error. Im trying to look for some kind of bundle listener implementation ideas, so that my bundle always activates after the resource resolver has got activated.