项目导入Flowable依赖会导致mybatis依赖报错
项目导入Flowable依赖会导致mybatis依赖报错
·
报错信息
***************************
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
com.baomidou.mybatisplus.core.MybatisXMLConfigBuilder.settingsElement(MybatisXMLConfigBuilder.java:258)
The following method did not exist:
org.apache.ibatis.session.Configuration.setDefaultResultSetType(Lorg/apache/ibatis/mapping/ResultSetType;)V
The method's class, org.apache.ibatis.session.Configuration, is available from the following locations:
jar:file:/D:/study/Maven/apache-maven-3.6.0-bin/apache-maven-3.6.0/repository/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar!/org/apache/ibatis/session/Configuration.class
The class hierarchy was loaded from the following locations:
org.apache.ibatis.session.Configuration: file:/D:/study/Maven/apache-maven-3.6.0-bin/apache-maven-3.6.0/repository/org/mybatis/mybatis/3.4.5/mybatis-3.4.5.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of org.apache.ibatis.session.Configuration
进程已结束,退出代码为 1
报错场景
在项目中导入flowable依赖。
报错原因
flowable也会引入 mybatis,导致jar冲突。
问题解决
引入 flowable 依赖时,排除 mybatis 的部分即可。
flowable-spring-boot-starter
<!--Flowable流程引擎-->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>6.3.0</version>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
</exclusions>
</dependency>
flowable-engine
<!--Flowable流程引擎-->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine</artifactId>
<version>6.3.0</version>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
</exclusions>
</dependency>

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)