gpt4 book ai didi

java - 拦截器绑定(bind)不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:12:51 25 4
gpt4 key购买 nike

我创建了一个自定义注释,如下所示

@InterceptorBinding
@Retention(RUNTIME)
@Target(TYPE, METHOD)
public @interface Traceable {}

我写了一个如下的拦截器

@Traceable
@Interceptor
public class EnterExitLogger {
@AroundInvoke
public Object aroundInvoke(InvocatiobContext c) {}
}

拦截器和注释位于名为 common-utils 的模块中。

我在类级别用 @Traceable 注释了我的目标类,如下所示

@Traceable
public class CDIManagedBean {
}

我在我的 beans.xml 文件中声明了拦截器条目,如下所示

<interceptors>
<class>my.package.EnterExitLogger</class>
</interceptors>

目标类在一个单独的模块中。 beans.xml 位于目标类模块的 META-INF 目录中。

目标类的方法是从休息类中调用的。当我调用这些方法时,不会调用拦截器的 AroundInvoke 方法。

我阅读了文档并了解到拦截器应该包含一个公共(public)的无参数构造函数。我添加了它。但是仍然没有调用拦截器。

我在阅读文档后在自定义注释上添加了@Inherited。但是仍然没有调用拦截器。

从文档中我注意到拦截器实现了 Serializable 接口(interface)。虽然没有提到我也实现了 Serializable。还是不行。

然后我从拦截器、beans.xml 文件和目标类中删除了自定义注释。我还从拦截器中删除了公共(public)无参数构造函数并删除了 Serializable。

然后我用 @Interceptors(EnterExitLogger.class) 注释了目标类并调用了流。我的拦截器被调用了。

谁能告诉我如何使用 InterceptorBinding?

附言

我正在 WAS 8.5 服务器中部署我的耳朵。

最佳答案

Java EE Tutorial提供了一个很好的解释和一些关于拦截器的例子:

创建一个拦截器绑定(bind)注解,必须用@Inherited注解和 @InterceptorBinding :

@Inherited
@InterceptorBinding
@Retention(RUNTIME)
@Target({METHOD, TYPE})
public @interface Logged { }

创建拦截器类,该类使用上面创建的拦截器绑定(bind)注释以及 @Interceptor 进行注释。注释。

每个@AroundInvoke方法需要一个 InvocationContext参数,返回 Object , 并抛出 Exception . @AroundInvoke方法必须调用 InvocationContext#proceed()方法,它会导致调用目标类方法:

@Logged
@Interceptor
public class LoggedInterceptor implements Serializable {

public LoggedInterceptor() {

}

@AroundInvoke
public Object logMethodEntry(InvocationContext invocationContext) throws Exception {

System.out.println("Entering method: "
+ invocationContext.getMethod().getName() + " in class "
+ invocationContext.getMethod().getDeclaringClass().getName());

return invocationContext.proceed();
}
}

定义拦截器和绑定(bind)类型后,您可以使用绑定(bind)类型注释 bean 和各个方法,以指定要在 bean 的所有方法或特定方法上调用拦截器。

例如,PaymentHandler bean 被注释为@Logged,这意味着对其业务方法的任何调用都会导致拦截器的@AroundInvoke。要调用的方法:

@Logged
@SessionScoped
public class PaymentHandler implements Serializable {...}

但是,您可以通过仅注释所需的方法来仅拦截 bean 的一组方法:

@Logged
public String pay() {...}

@Logged
public void reset() {...}

为了在 CDI 应用程序中调用拦截器,必须在 beans.xml 文件中指定它:

<interceptors>
<class>your.package.LoggedInterceptor</class>
</interceptors>

如果应用程序使用多个拦截器,拦截器将按照 beans.xml 文件中指定的顺序调用。

关于java - 拦截器绑定(bind)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33281393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com