一、使用阿里模板创建一个springboot项目勾了mybatis

二、在mybatis-plus官网走了一下入门文档

三、好家伙写完以后发现代码明明都是一模一样为什么会这么多错误

问题一、java.lang.IllegalStateException: Failed to load ApplicationContext

问题二、Error creating bean with name 'xxxMapper' defined in file 

问题三、org.apache.ibatis.session.Configuration.parsePendingMethods(Z)V

起初我以为只是mapper没扫描到,使用了各种方法当然也是百度啦,但是怎么都没想到居然是......

依赖的问题

在使用阿里模板导入的包:

<--!阿里模板自动生成-->   
<dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.2</version>
   </dependency>

mybatis-plus官网提供:

<dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.5.7</version>
 </dependency>

(我真是个笨啊)为什么不早看maven依赖树,我点开一看

emmmm........ 不是原来你两是版本不合啊(愚蠢了)

只能降一下版本

降下来了

  <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.1</version>
        </dependency>

    <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.5.1</version>
        </dependency>

成功运行

但是有一说一 使用 mybatis-plus-boot-starter 的情况下,通常不建议直接引入 mybatis-spring-boot-starter,因为 mybatis-plus-boot-starter 已经包含了 mybatis-spring-boot-starter 的所有功能,并且添加了对 MyBatis-Plus 的支持(其实mybatis-spring-boot-starter 是可以直接不要的 啊哈哈哈哈哈哈哈 靠了

慢慢记录~慢慢成长

Logo

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

更多推荐