博客
关于我
springboot整合mybatis使用xml实现sql语句的配置
阅读量:398 次
发布时间:2019-03-05

本文共 625 字,大约阅读时间需要 2 分钟。

首先肯定还是引入mybatis依赖

org.mybatis.spring.boot
mybatis-spring-boot-starter
1.2.0

在启动类处扫描mybatis的mapper类

在这里插入图片描述

写一个mapper接口类

定义好查询方法

在这里插入图片描述

在resources下编写mapper接口类对应的xml文件

在这里插入图片描述

在yml中配置,可以扫描到xml文件

mybatis:  mapper-locations: classpath:mapper/*.xml    #配置mybatis扫描mapper文件xml的路径

在这里插入图片描述

转载地址:http://wjizz.baihongyu.com/

你可能感兴趣的文章
Nginx开启gzip网页传输压缩配置
查看>>
nginx开机启动脚本
查看>>
nginx异常:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf
查看>>
nginx总结及使用Docker创建nginx教程
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in usrlocalnginxconfnginx.conf128
查看>>
Nginx搭建RTMP服务器+FFmpeg实现海康威视摄像头预览
查看>>
Nginx搭建静态资源映射实现远程访问服务器上的图片资源
查看>>