首页 > 数据库 >SpringBoot整合mybatis plus报错:net.sf.jsqlparser.schema.Column, is available from the following location

SpringBoot整合mybatis plus报错:net.sf.jsqlparser.schema.Column, is available from the following location

时间:2022-11-24 16:11:46浏览次数:36  
标签:available SpringBoot Column 报错 jsqlparser net 2.0 sf schema

 

An attempt was made to call the method net.sf.jsqlparser.schema.Column.withColumnName(Ljava/lang/String;)Lnet/sf/jsqlparser/schema/Column; but it does not exist. Its class, net.sf.jsqlparser.schema.Column, is available from the following locations:

jar:file:/D:/repository/com/github/jsqlparser/jsqlparser/2.0/jsqlparser-2.0.jar!/net/sf/jsqlparser/schema/Column.class

It was loaded from the following location:

file:/D:/repository/com/github/jsqlparser/jsqlparser/2.0/jsqlparser-2.0.jar


Action:

Correct the classpath of your application so that it contains a single, compatible version of net.sf.jsqlparser.schema.Column

 

分页插件中排除jsqlparser

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper-spring-boot-starter</artifactId>
    <version>1.4.3</version>
    <exclusions>
        <exclusion>
            <artifactId>jsqlparser</artifactId>
            <groupId>com.github.jsqlparser</groupId>
        </exclusion>
    </exclusions>
</dependency>

 

标签:available,SpringBoot,Column,报错,jsqlparser,net,2.0,sf,schema
From: https://www.cnblogs.com/pxblog/p/16922206.html

相关文章