mybatis.mapper-locations的作用和Invalid bound statement (not found)错误

mybatis.mapper-locations作用:加载我们的mapper xml文件,用于解决当我们的mapper映射文件所在位置不同于mapper接口所在位置,如果位置相同就可以忽略这条代码

对应错误:mapper.xml没被加载到

环境:SpringBoot+Mybatis+MySQL
环境准备:

  1. 创建springboot 的demo

  2. 引入依赖和插件

  3. 逆向工程生成相应的pojo,mapper接口,mapper映射xml文件

  4. 逆向工程生成相应的pojo,mapper接口,mapper映射xml文件

  5. 创建controller层

    以上1-5层,目录截图,期中 resources下的mybatis文件夹只是我用来存放逆向工程的配置文件(忽略)
    mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第1张图片

  6. 编写application.properties

server.port=8080
server.servlet.context-path=/demo
spring.datasource.username=root
spring.datasource.password=
spring.datasource.url=jdbc:mysql://localhost:3307/studentdb?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.profiles.active=dev
spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.jsp
#mybatis.mapper-locations=classpath:com/example/demo/mapper1/*.xml
mybatis.type-aliases-package=com.example.demo.pojo
logging.level.com.example.demo.mapper=debug
logging.level.web=debug

注意:此时没有启用#mybatis.mapper-locations

  1. 接下来修改DemoApplication.java

mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第2张图片
在@SpringBootApplication 后面加注解
@MapperScan(“com.example.demo.mapper”)
扫描mybatis的相关文件,此时的作用是加载"com.example.demo.mapper"下的mapper接口,如果对应的mapper映射文件恰好所在的目录是在resources下的"com.example.demo.mapper",那么xml映射文件也会被加载到配置中,此时mapper接口和xml文件恰好同放在"com.example.demo.mapper"中
mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第3张图片

  1. 在controller层编写controller调用 mapper 访问数据库查询信息
@Controller
@RequestMapping("student")
public class StudentController {

    @Autowired
    StudentMapper studentMapper;

    @RequestMapping("/listStudents")
    public String getStudentList(@RequestParam(defaultValue = "1",value = "page")int page, HttpServletRequest request){
        List<Student> list = studentMapper.selectByExample(new StudentExample());
        request.setAttribute("list",list);
        return "student/listStudents";
    }
}
  1. 运行,显示成功
    mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第4张图片
    10. 如果我们的mapper接口和mapper映射文件不在相同的目录下 该案例同为"com.example.demo.mapper",则xml映射文件不能被加载到
    我们把xml映射文件所在的文件夹改为mapper1
    mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第5张图片
    然后重启项目,访问地址,报错
    mybatis.mapper-locations的作用和Invalid bound statement (not found)错误_第6张图片
    Failed to complete request: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
    org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.demo.mapper.StudentMapper.selectByExample
    由于xml所在路径不同于mapper接口的所在路径,所以xml映射文件没被读取到,调用的时候就自然报错,解决路径不同的读取方法:

mybatis.mapper-locations

回到application.properties,我们加入一行:

mybatis.mapper-locations=classpath:com/example/demo/mapper1/*.xml

(我自己打开注释)
这一行代码的作用是加载我们的mapper xml文件,用于解决当我们的mapper映射文件所在位置不同于mapper接口所在位置,如果位置相同就可以忽略这条代码
指定了xml的新位置(com/example/demo/mapper1)后,重启再次访问就成功了,
注意resources下的目录路径是以"/“为分隔,而不是.,java下的才是”."

你可能感兴趣的:(笔记,spring,boot,java,spring)