我有一个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”。我在哪里可以编写注释逻辑?