Seam to Weld CDI

时间:2015-02-10 11:14:02

标签: jboss-weld jboss-seam

我想知道如果有一个等效于下面的接缝2.2注释

@Interceptor(around = {SomeInterceptor.class})

使用Weld注释。 我对Seam和Weld都不太熟悉。究竟是什么意思“周围”?是否与其他拦截器的命令有关?或者它是某种继承?

1 个答案:

答案 0 :(得分:0)

查看https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Web_Platform/5/html/Seam_Reference_Guide/ch07s11.html

"在拦截器顺序很重要的地方,将@Interceptor注释添加到拦截器类中以指定拦截器的特定顺序。"

 @Interceptor(around={BijectionInterceptor.class, 
                  ValidationInterceptor.class, 
                  ConversationInterceptor.class}) 
 public class LoggedInInterceptor { 
... 
}

所以使用一个拦截器它不是很有用......