报错信息
Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: net.sf.jsqlparser.statement.update.Update.getTable()Lnet/sf/jsqlparser/schema/Table; org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: net.sf.jsqlparser.statement.update.Update.getTable()Lnet/sf/jsqlparser/schema/Table;
原因是jsqlparser 依赖版本冲突,解决方案
com.github.pagehelper pagehelper5.1.10 @Configuration public class MyBatisPlusConfig { @Bean public PaginationInterceptor paginationInterceptor() { //多租户配置... } //pagehelper 分页配置 @Bean ConfigurationCustomizer mybatisConfigurationCustomizer() { return new ConfigurationCustomizer() { @Override public void customize(MybatisConfiguration configuration) { configuration.addInterceptor(new com.github.pagehelper.PageInterceptor()); } }; } } com.github.jsqlparser jsqlparser2.1



