本文主要是介绍Spring 出现这样的BUG org.springframework.aop.AopInvocationException: Null return value from advice does n,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
org.springframework.aop.AopInvocationException: Null return value from advice does not match primitive return type for: public abstract boolean org.lanqiao.service.StudentService.insertStudent(org.lanqiao.entity.Student)
解决方案
1.接口使用包装类 不能使用基本数据类型
int -Integer
boolean-Boolean
2.避免在aop 期间改变返回值
这篇关于Spring 出现这样的BUG org.springframework.aop.AopInvocationException: Null return value from advice does n的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!