org.springframework.web.util.NestedServletException: Request processing failed; nested exception错误解决

##出现
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): cn.hyl.mapper.UserMapper.getUser

##原因
此异常的原因是由于mapper接口编译后,在同一个目录下没有找到mapper映射文件而出现的。

##解决方法
在pom.xml中添加


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

你可能感兴趣的:(前端,mybatis,java)