这个切入点的格式问题是什么?
@Around("execution(* @myPackage.SafetyCritical.*(*))&& @annotation(deny)")
.我忘了补充:例外是“切入点格式不正确:期待'名称模式'(&&之前的最后一个右括号)
例如,切入点应与此类一起使用:
@SafetyCritical
public class SecureClass
{
public SecureClass(){
}
@Deny
public void isNotAllowed(){
System.out.println("This should not happen");
}
@Allow
public void isAllowed(){
System.out.println("Allowed");
}
}