Description: An attempt was made to call a method that does not exist. The attempt was made from the following location: com.baomidou.mybatisplus.extension.service.impl.ServiceImpl.currentModelClass(ServiceImpl.java:87) The following method did not exist: com.baomidou.mybatisplus.core.toolkit.ReflectionKit.getSuperClassGenericType(Ljava/lang/Class;I)Ljava/lang/Class; The calling method's class, com.baomidou.mybatisplus.extension.service.impl.ServiceImpl, was loaded from the following location:
......
这个报错的意思是:这是一个Java应用程序的错误日志,提示在调用ServiceImpl.java文件中的currentModelClass()方法时发生错误。具体来说,错误显示该方法内部执行的方法 'com.baomidou.mybatisplus.core.toolkit.ReflectionKit.getSuperClassGenericType(Class, int)' 不存在。
这时大家可以看一下pom文件中mybatis-plus的版本信息是否兼容(相同)。
这三者改成相同的即可。
若此时报错,controller中报错缺少方法包,可以尝试像小编这样把版本改称成3.4.2即可。