我想知道如果有一个等效于下面的接缝2.2注释
@Interceptor(around = {SomeInterceptor.class})
使用Weld注释。 我对Seam和Weld都不太熟悉。究竟是什么意思“周围”?是否与其他拦截器的命令有关?或者它是某种继承?
答案 0 :(得分:0)
"在拦截器顺序很重要的地方,将@Interceptor注释添加到拦截器类中以指定拦截器的特定顺序。"
@Interceptor(around={BijectionInterceptor.class,
ValidationInterceptor.class,
ConversationInterceptor.class})
public class LoggedInInterceptor {
...
}
所以使用一个拦截器它不是很有用......