1、org.springframework.aop.AopInvocationException:Null return value from advice does not match primitive return type for
这个错就是返回的类型不匹配。
2、解决方法:
我目前的解决方发就是把service层对应的接口返回值改成Object类型;这样就解决了(注意:我为什么改service层的呢!因为我把aop的入口写在service层。)。
为什么是报这错呢主要是:我mapper的接口返回int;service的接口也是返回 int;在controller层向前端返回的是Map<String,Object>;好了到这里就报错了,我也不知道为什么报错。
3、我目前也没有什么好的解决方法。如果那位大神有好的解决方法可以在下面留言。