Today, in Spring boot I do something like this:
@Configuration
@ComponentScan(
basePackages = ["br.com.gubee"],
includeFilters = [ComponentScan.Filter(type = FilterType.ANNOTATION, value = [UseCase::class])])
class DomainConfiguration
The annotation:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface UseCase
Defining my bean:
@UseCase
class Test