jsf2中的自定义注释:在哪里实现逻辑

时间:2014-03-09 09:28:43

标签: java jsf-2 annotations managed-bean

我有一个jsf项目,我想在其中编写自定义注释。

注释是:

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
    String value();
}
在bean中

我想使用这个注释:

public class JobBean {

    @MyAnnotaion(value = "Hello")
    public void start() {
        //start
    }

    public void stop() {
        //stop
    }
}

有一些视图会触发JobBean的方法。

现在我想在调用start方法时打印“Hello”。我在哪里可以编写注释逻辑?

0 个答案:

没有答案