Springboot 多模块集成mybatis提示:Invalid bound statement (not found)

1、第一步:检查提示错误信息接口namespace 文件是否对应:

Springboot 多模块集成mybatis提示:Invalid bound statement (not found)_第1张图片

Springboot 多模块集成mybatis提示:Invalid bound statement (not found)_第2张图片

MyBatis 文件Mapper 接口定义与Mapper.xml 文件定义一致。

2、整体项目结构截图如下:

Springboot 多模块集成mybatis提示:Invalid bound statement (not found)_第3张图片

从项目结构来看:包含两个子模块包含MyBatis 的mapper 文件。

application.yml 关于mybatis 配置文件(错误配置如下):

mybatis:
    type-aliases-package: com.zzg.author.model.domain;com.zzg.quartz.domain
    mapper-locations: classpath:/mybatis/*.xml

修改后配置文件如下:

mybatis:
    type-aliases-package: com.zzg.author.model.domain;com.zzg.quartz.domain
    mapper-locations: classpath*:/mybatis/*.xml

 

你可能感兴趣的:(深蓝计划)