0
@InterceptorBinding
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface RequiresPageReload {
}

public interface Page{
    public static final String LOAD_STR = "load";
    public void load();
}
@RequestScoped
public class PageImpl1 implements Page{
    public void load(){
        //...
    }

    @RequiresPageReload
    public String foo(){
        //...
        return "foo1";
    }
}
@RequestScoped
public class MyObject{
    @RequiresPageReload
    public String foo2(){
        //...
        return "foo2";
    }
}

@RequiresPageReload
@Interceptor
public class RequiresPageReloadInterceptor implements Serializable {

    /**
     * 
     */
    private static final long serialVersionUID = 1L;

    @AroundInvoke
    public Object forceReload(InvocationContext context) throws Exception {
        Object result = context.proceed();
        context.getMethod().getDeclaringClass().getDeclaredMethod(Page.LOAD_STR).invoke(context.getTarget()); //***
        return result;
    }

}

In the line marked with stars, of course I can check through reflection if the method exists and decide accordingly what to do. But I wonder whether is there a better way to achieve the same behavior? For example, is it possible to associate interceptors to just a specific type (in this example, imagine I don't want the foo2() method of MyObject to be intercepted because such object does not implement Page)? I considered also using Decorators, but there the problem is "foo"s method don't belong to an interface..

thank you!

4

1 回答 1

0

听起来你想要的是一个装饰器

于 2012-07-24T16:52:31.133 回答