有没有办法创建拦截器限定符注释,忽略注释字符串值以进行限定?
例如:
Log.java
@Inherited
@InterceptorBinding
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Log {
String value() default ""; // <---- ignore this
}
LogInterceptor.java
@Log
@Interceptor
public class LogInterceptor implements Serializable {
...
}
Usage.java
@Log("message for this log")
public String interceptedMethod(String param) {
...
}
这不起作用,因为注释value("message for this log")
用作限定符,但我想使用value()
不作为限定符,而是使用消息日志。
答案 0 :(得分:12)
您可以使用@Nonbinding注释来实现此目的。您可以通过注释成员@Nonbinding来强制容器忽略限定符类型的成员。请看以下示例:
@Qualifier
@Retention(RUNTIME)
@Target({METHOD, FIELD, PARAMETER, TYPE})
public @interface PayBy {
PaymentMethod value();
@Nonbinding String comment() default "";
}
在@PayBy限定符匹配bean时,将忽略注释。 可以在here找到对描述此内容的CDI文档的引用。