org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题

rg.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题,通常问题出在mybatis中dao接口与mapper配置文件在做映射绑定的时候出现问题,简单说,就是接口与xml要么是找不到,要么是找到了却匹配不到。
 

问题常见于:

情况一 :mapper的namespace名没有和DAO全路径一致,导致。

 

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题_第1张图片

情况二:还有当xml配置文件没有写在resources时

需要在pom中配置



        
            src/main/java
            
                **/*.xml
            
        
        
            src/main/resources
            
                **/*.xml
                **/*.properties
            
        
    

情况三:

mapper文件没有被正确读取到。(可能放错位置了)

 

你可能感兴趣的:(spring问题)