- ***************************
- 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 的部分即可。
- <dependency>
- <groupId>org.flowablegroupId>
- <artifactId>flowable-spring-boot-starterartifactId>
- <version>6.3.0version>
- <exclusions>
- <exclusion>
- <groupId>org.mybatisgroupId>
- <artifactId>mybatisartifactId>
- exclusion>
- exclusions>
- dependency>
- <dependency>
- <groupId>org.flowablegroupId>
- <artifactId>flowable-engineartifactId>
- <version>6.3.0version>
- <exclusions>
- <exclusion>
- <groupId>org.mybatisgroupId>
- <artifactId>mybatisartifactId>
- exclusion>
- exclusions>
- dependency>