在搞 mybatis-plus 遇到的坑...
https://mybatis.plus/ 官网首页说的当前最新版本,是spring mvc的.. 不是springboot
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>3.4.1</version>
</dependency>
网上有的人说,添加这个👇这个,也不对
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-start</artifactId>
<version>2.1.1</version>
</dependency>
如果你用的是springboot ,直接添加下面这一个依赖就可以了
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.1</version>
</dependency>
这才是答案:https://mybatis.plus/guide/install.html
搞了好久,java新手入坑Q群: 939627878