使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案

导读:本篇文章讲解 使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案

问题背景

可能大家遇到的空指针异常和我不同,说一下,我是怎么遇到的
1 自己拦截的的是整个controller文件夹下的public方法,但我controller文件加下还有一个文件夹,然后我调用里面的方法,导致也被拦截了

    @Pointcut("execution(public * com.controller..*.*(..))")
    public void exectionMethod() {
    }

使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案
然后报错:

2022-05-12 09:47:35.226 ERROR [http-nio-16803-exec-1] o.a.c.c.C.[.[.[.[dispatcherServlet].log(DirectJDKLog.java:175): Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
java.lang.NullPointerException: null
        at com.adayun.dataxcompute.aop.ControllerLog.doAfter(ControllerLog.java:89)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:644)
        at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:626)
        at org.springframework.aop.aspectj.AspectJAfterReturningAdvice.afterReturning(AspectJAfterReturningAdvice.java:66)
        at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:56)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
        at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
        at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)

解决方案

1 把controller里面的文件夹feignclient移出来就好了

总结

  • 因为拦截器里面会存放globalId,但再去调用feignclient的时候使用的一样的globalId,没有存放进去

作为程序员第 131 篇文章,每次写一句歌词记录一下,看看人生有几首歌的时间,wahahaha …
使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案使用AOP进行拦截整个controller的时候报错NullPointerExcept解决方案

Lyric: 接着紧紧闭上眼

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/110744.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!