What is the equivalent of spring's @ComponentScan on the CDI Java EE

309 Views Asked by At

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
0

There are 0 best solutions below