为了账号安全,请及时绑定邮箱和手机立即绑定

matchType()这个方法主要是干什么用的

  @Pointcut("within(com.imooc.service.sub.*)")//拦截类
    public void matchType(){
        System.out.println("matchType()方法执行进入");
    }

    @Before("matchType()")
    public void befor(){
        System.out.println("开始==========");
    }


正在回答

1 回答

这个方法不处理什么逻辑,主要用于被注解一个@Pointcut(),你可以理解这个方法就是切入点本身。

你也可以不写这个方法,直接在before 增强处写 切入点 例如

@Before("within(com.imooc.service.sub.*)")

public ovid before(){

        System.out.println("开始===========")

}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

matchType()这个方法主要是干什么用的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信