当注释具有参数时,Java EE CDI Interceptor不起作用

fla*_*ash 6 java java-ee interceptor java-ee-7

我想写一个CDI拦截器.如果我的注释仅包含1个参数,则截取效果很好,但如果使用2个参数则会中断.问题是为什么?

拦截器类:

@Monitored
@Interceptor
@Priority(APPLICATION)
public class MonitoringInterceptor {

    @AroundInvoke 
    public Object logInvocation(InvocationContext ctx) throws Exception {
        LOGGER.error("METHOD CALLED!!!"); //this is not called when annotation has 2 parameters
        return ctx.proceed();
    }
}
Run Code Online (Sandbox Code Playgroud)

注释:

@InterceptorBinding
@Target({TYPE, METHOD})
@Retention(RUNTIME)
@Inherited
public @interface Monitored {
    public String layer() default "BUSINESS";
    public String useCase() default "N/A";
}
Run Code Online (Sandbox Code Playgroud)

现在有趣的部分:

@Stateless
public class MyBean {

    //this does not work, why?
    @Monitored(layer = "BUSINESS", useCase = "test")

    //if I use the following annotation it works well
    //@Monitored(layer = "BUSINESS")
    public String sayHello(String message) {
        return message; 
    }
}
Run Code Online (Sandbox Code Playgroud)

我知道这MyBean没有注释@Interceptors.这是有意的.拦截器声明在beans.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
   bean-discovery-mode="all">
<interceptors>
    <class>my.package.MonitoringInterceptor</class>
</interceptors>
</beans>
Run Code Online (Sandbox Code Playgroud)

for*_*two 7

参数是绑定的一部分.使用@Nonbinding,或者确保为拦截器和拦截点使用相同的值来注释参数.