Eclipse+JBoss+EJB3拦截器方法和拦截器类

一、拦截器方法

金坛网站制作公司哪家好,找创新互联建站!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设等网站项目制作,到程序开发,运营维护。创新互联建站从2013年创立到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联建站

EJB3可以通过拦截器对Bean方法进行拦截和覆盖。这有些象AOP中的around。通过AOP的around方法,可以修改被拦截方法的返回值、参数值,甚至可以取消被拦截方法的执行。EJB3的拦截器可以用在无状态Session Bean、有状态Session Bean和消息驱动Bean(MDB)的方法中。实现拦截器的最简单的方法是使用拦截器方法。也就是说,只要在当前的Bean中使用@AroundInvoke对某个方法进行注释(关于拦截器的类都在javax.interceptor包中),那么这个方法就会变成拦截器方法,该拦截器方法会拦截当前Bean中的所有方法。实现过程如下:

 
 
 
  1. @Stateful
  2. public class GreeterBean implements Greeter
  3. {
  4.     @AroundInvoke
  5.     public Object myInterceptorMethod1(InvocationContext ic) throws Exception
  6.     {
  7.         System.out.println("myInterceptorMethod1:" + ic.getMethod().getName());
  8.         obj = ic.proceed();    
  9.     }
  10.     @AroundInvoke
  11.     public Object myInterceptorMethod2(InvocationContext ic) throws Exception
  12.     {
  13.         System.out.println("myInterceptorMethod2:" + ic.getMethod().getName());
  14.         obj = ic.proceed();    
  15.     }
  16.     @Override
  17.     public String greet(String name)
  18.     {
  19.         return "hello " + name;
  20.     }
  21. }

上面的Stateful Session Bean中定义了两个拦截器方法和一个Bean方法。当客户端调用greet方法时,EJB容器会先调用myInterceptorMethod1方法,然后会调用myInterceptorMethod2方法,最后会调用greet方法。使用拦截器方法时要注意如下几点:

1.  拦截器方法必须有一个返回值,返回值类型是Object。

2.  拦截器方法只能有一个参数,而且该参数类型必须是javax.interceptor.InvocationContext。

3.  只有调用InvocationContext接口的proceed方法,EJB容器才会调用下一个拦截器方法或被拦截的Bean方法。

4.  由于proceed方法要求抛出一个Exception异常,因此,拦截器方法必须抛出一个Exception异常,或在拦截器方法中使用try...catch来捕捉proceed方法抛出的异常。

二、拦截器类

有一些拦截器方法会拦截器不同Bean中的方法,在这种情况下,需要将拦截器方法放在一个单独的类中。这个类就叫拦截器类。下面是一个拦截器类的代码:

 
 
 
  1. package service;
  2. import javax.interceptor.AroundInvoke;
  3. import javax.interceptor.InvocationContext;
  4. public class MyInterceptor
  5. {
  6.     @AroundInvoke
  7.     public Object interceptorMethod(InvocationContext ic) throws Exception
  8.     {
  9.         System.out.println("MyInterceptor:" + ic.getMethod().getName());
  10.         return ic.proceed();
  11.     }
  12. }

为了使用该拦截器类,需要在SessionBean或MDB中使用@Interceptors来指定要使用的拦截器类。代码如下:

 
 
 
  1. @Stateful
  2. @Interceptors(MyInterceptor.class)
  3. public class GreeterBean implements Greeter
  4. {
  5.     @AroundInvoke
  6.     public Object myInterceptorMethod1(InvocationContext ic) throws Exception
  7.     {
  8.         System.out.println("myInterceptorMethod1:" + ic.getMethod().getName());
  9.         obj = ic.proceed();    
  10.     }
  11.     @AroundInvoke
  12.     public Object myInterceptorMethod2(InvocationContext ic) throws Exception
  13.     {
  14.         System.out.println("myInterceptorMethod2:" + ic.getMethod().getName());
  15.         obj = ic.proceed();    
  16.     }
  17.     @Override
  18.     public String greet(String name)
  19.     {
  20.         return "hello " + name;
  21.     }
  22. }

如果有多个拦截器类,可以使用如下的代码来指定这些拦截器类:

 
 
 
  1. @Interceptors({MyInterceptor.class, MyInterceptor1.class})

如果指定了多个拦截器类和拦截器方法,就涉及到一个调用顺序的问题。EJB容器会先调用拦截器类中的拦截器方法、如果有多个拦截器类被指定,按指定的顺序进行调用。也就是说,MyInterceptor类中的拦截器方法会最先被调用,然后是MyInterceptor1类中的拦截器方法。最后会调用在Bean中定义的拦截器方法(myInterceptorMethod1和myInterceptorMethod2)。

在默认情况下,拦截器类将拦截所有的Bean方法,但可以使用@ExcludeClassInterceptors注释来阻止拦截器对某个Bean方法进行拦截。如在GreeterBean类中还有一个getValue方法,那么阻止该方法被拦截的代码如下:

 
 
 
  1. @ExcludeClassInterceptors
  2. public String getValue()
  3. {
  4.     return "abcd";
  5. }

使用@ExcludeClassInterceptors只能阻止拦截器类中的拦截器方法对Bean方法的拦截,而在Bean中定义的拦截器方法仍然会拦截Bean方法。

文章标题:Eclipse+JBoss+EJB3拦截器方法和拦截器类
网页URL:http://www.csdahua.cn/qtweb/news14/253414.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网