I am running a component scan on a jar where I load a few packages. The package com.path.package works fine and is getting loaded but then beans within com.path.package.addon is not getting loaded in by the component scan
<context:component-scan base-package="com.path.package, com.path.package.addon />
I did look at several questions before asking this one. None of them seem to give the answer to the problem I am seeing. There are no errors on my logs, when I try to get this bean from applicationContext, I just get the error bean not found. Any help would be appreciated.