Spring's @ComponentScan offers a type-safe basePackageClasses attribute - seems a good thing to use especially as it isn't uncommon for packages to be renamed on the project I'm working on. The documentation says:
Consider creating a special no-op marker class or interface in each package that serves no purpose other than being referenced by this attribute.
... but offers no further guidance on the name of such a class. Am wondering if there are any conventions around this. package-info.java already exists in all packages (as enforced by Checkstyle) - would have preferred to reuse this but sadly Java doesn't allow a class of this name.
(If no such standards exist am thinking perhaps PackageInfo, BasePackage, PackageMarker or similar but would prefer to follow convention if there is one.)
                        
No answers yet and had to make a decision so here it is:
Marker class:
Usage:
PackageMarkernaming justification:Would still be interested if anyone can give examples of marker classes used in a more trail-blazing context...