Does Spring implement its own packages scan

60 Views Asked by At

Does Spring implements its own way to scan the class in packages or does it use a external library like 'reflection':

https://github.com/ronmamo/reflections

1

There are 1 best solutions below

1
On BEST ANSWER

A bit of both. They use ASM for reading the class files, but use their own MetadataReader so they can offer a more flexible inheritance model for annotations than Java offers out of the box (in plain Java, annotations are only inherited from a super class. In Spring, they are also inherited from super interfaces and meta annotations).