使用mybatis-plus出现org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

原配置

mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: springboot.shiro.entity

修改后

mybatis-plus:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: springboot.shiro.entity

问题:
我这里出错的原因是pom里面包含mybatis-plus,记得要配置mybatis-plus.mapper-locations,只有mybatis.mapper-locations不起作用

你可能感兴趣的:(mybatis)