1:java
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.myspringboot.dao.AyUserDao.findByNameAndPasswordspring
這是由於namespace的問題 必定要寫正確的路徑名,固然了 ,也不能寫錯了 apache
2:springboot
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating interface com.example.myspringboot.dao.AyUserDao with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.example.myspringboot.dao.AyUserDao.<init>()mybatis
這是由於 resultMap的type屬性必定要寫成你的實體類名 不要寫成接口名 spa
錯誤實例:blog
正確的:接口