场景:在搭建MyBatis-Plus配置租户时遇到的异常
完整错误:
java.lang.NoSuchMethodError: net.sf.jsqlparser.statement.select. PlainSelect.getGroupBy()Lnet/sf/jsqlparser/statement/select/GroupByElement;
解决方法:jar包的版本不对,我一开始使用了 pagehelper-spring-boot-starter 包,换了很多版本都不行,最后换成了 pagehelper 的jar包
com.github.pagehelper
pagehelper
5.1.11
com.github.jsqlparser
jsqlparser
3.1
相关异常:Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: net.sf.jsqlparser.statement.update.Update.getTables()Ljava/util/List;



