Spring之AOP报错:Null return value from advice does not match primitive return type for

1、org.springframework.aop.AopInvocationException:Null return value from advice does not match primitive return type for
这个错就是返回的类型不匹配。
Spring之AOP报错:Null return value from advice does not match primitive return type for_第1张图片
2、原因:

主要还是基本数据类型无法接受null,如果环绕返回null就报错,可以将boolean改成Boolean。Spring之AOP报错:Null return value from advice does not match primitive return type for_第2张图片
3、Boolean.TRUE 和 true 区别?

Boolean A(){ 
    return Boolean.TRUE;
}
boolean B(){
    return Boolean.TRUE
}
Boolean C(){
    return true;
} 
boolean D(){
    return true;
}

在性能和​​内存使用效率方面,A、D效率最高,C、D会更慢,因为需要装箱和拆箱。
所以建议 Boolean 返回类型函数建议 return Boolean.TRUE;这种写法!

参考原博文:https://blog.csdn.net/anenan/article/details/88720152

你可能感兴趣的:(《微服务中间件技术》系列,spring,aop)