当前位置: 代码迷 >> 综合 >> org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jsgx.dao.schedu
  详细解决方案

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jsgx.dao.schedu

热度:108   发布时间:2023-10-08 20:28:19.0
做项目时,遇到了
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jsgx.dao.schedu.TemplateDao.getAllTemplates

经过查找发现可能引起错误的原因:

 1. mapper.xml 中  namespace 的路径 或者是 resultType的路径写错了

2. 就是在扫描包时. 如  配置扫描路径为   mapper/*.xml。 而你的mapper目录为   mapper/test/*.xml

没有扫描到你所创建的xml文件


  相关解决方案