springboot invalid bound statement (not found)解决办法

调用接口,报错内容截图如下:
springboot invalid bound statement (not found)解决办法_第1张图片

原因:缺少配置,为指定mybatis-config.xml的位置

解决办法:
在application.yml文件中添加一下配置即可

mybatis:
  config-location: classpath:mybatis/mybatis-config.xml
  mapper-locations: classpath:mybatis/mapper/*.xml
  type-aliases-package: com.example.firstspringboot.model

通过配置mybatis.mapper-locations来指明mapper的xml文件存放位置,
mybatis.type-aliases-package来指明和数据库映射的实体的所在包

注意*Mapper.xml文件需要放在resources目录下!!!

你可能感兴趣的:(Spring,Boot)