Once a custom annotation has been created, it is added to the BEANS tab (since it contains the @component annotation) but is displayed as null in the list
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface PersistenceAdapter {
@AliasFor(annotation = Component.class)
String value() default "";
}
