springboot org.apache.ibatis.binding.BindingException: Invalid bound statement

使用springboot整合mybatis 发现无法使用进行数据库操作 一直报绑定失败 

springboot org.apache.ibatis.binding.BindingException: Invalid bound statement

检查后发现 编译后的文件没有xml文件

springboot org.apache.ibatis.binding.BindingException: Invalid bound statement_第1张图片

看到这里就明白了 需要资源拷贝插件 将xm文件 也进行编译 非常简单

在pom文件的build中 插入

  
        
        
            
                src/main/java
                
                    **/*.xml
                
            
        
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

重新 打包编译就会发先对应的xml文件已经出现

springboot org.apache.ibatis.binding.BindingException: Invalid bound statement_第2张图片

 

你可能感兴趣的:(SpringBoot)