mybatis-plus

2025-09-18

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.example.mapper.TestMapper.insert

解决过程:

删除

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

改为

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

 

posted on 2025-09-18 10:42  angelshelter  阅读(9)  评论(0)    收藏  举报

导航