mybatis-plus报错Invalid bound statement (not found)主要是依赖问题


报错日志 :org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.**********lMapper.selectOne

出现这个错误的原因是mybatis找不到接口对应的mapper文件,主要是mybatis-plus的自动配置jar包问题。

导入下面三个依赖可以解决了

        
            com.baomidou
            mybatis-plus-boot-starter
            3.1.2
        
        
            com.baomidou
            mybatis-plus-annotation
            3.1.2
        
        
            com.baomidou
            mybatis-plus-extension
            3.1.2
        

你可能感兴趣的:(maven,mybatis)