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

 

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>
复制代码

 

posted @   yvioo  阅读(4996)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2021-11-24 JAVA根据A星算法规划起点到终点二维坐标的最短路径
2019-11-24 Centos7使用Docker启动elasticsearch服务秒退
点击右上角即可分享
微信分享提示