I am doing object injection using AOP. There exists a class which starts with samllcase (testClass) wherein the object is not getting injected.
I converted the file name (legacy class) so that it starts with capital case (TestClass) and updated references in AOP.xml and spring-beans.xml containing the bean definitions and it it started to work as intended.
My question is that is there a specification at Spring / AOP to have class names to start with capital case? Any reference link will be appreciated .
Or Am I missing something ?