springboot项目整合mybatis并配置mybatis中间件的实现

记录创建springboot项目并配置mybatis中间件:

资源准备及版本说明

编程工具:IDEA

JDK版本:1.8

Maven版本:Apache Maven 3.6.3

springboot版本:2.4.4

mybatis版本:1.3.2

mysql版本:5.1.48

创建mavem项目

通过IDEA创建很便捷,参考《IDEA创建SpirngBoot项目》。

配置pom.xml

使用mybatis需要添加依赖


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    1.3.2

完整pom.xml配置如下:



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.4.4
         
    
    org.example
    springboot-mybatis
    1.0-SNAPSHOT

    
        UTF-8
        UTF-8
        1.8
        1.3.2
        5.1.48
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            org.springframework.boot
            spring-boot-starter-jdbc
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            ${mybatis.version}
        
        
            mysql
            mysql-connector-java
            ${mysql.version}
        
        
            org.projectlombok
            lombok
            true
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

配置application.yml

配置mybatis主要配置数据表映射实体类路径type-aliases-package和数据表映射配置文件路径mapper-locations

完整application.yml配置如下:

springboot项目整合mybatis并配置mybatis中间件的实现_第1张图片

创建项目启动文件

在Application启动文件配置扫描持久化层的路径的注解@MapperScan

springboot项目整合mybatis并配置mybatis中间件的实现_第2张图片

代码结构

user表为例子,创建controller目录、dao目录、service目录、model目录以及在resources目录下创建mapper目录用来保存映射xml文件。

完整代码结构如下:

springboot项目整合mybatis并配置mybatis中间件的实现_第3张图片

映射实体类User:

springboot项目整合mybatis并配置mybatis中间件的实现_第4张图片

持久层UserDao:

注意添加@Repository注解

springboot项目整合mybatis并配置mybatis中间件的实现_第5张图片

业务层UserService:

创建根据ID查询记录的接口getById(Long id);

业务层接口实现类UserServiceImpl:

注意添加@Service注解,引入UserDao,实现根据ID`查询记录

springboot项目整合mybatis并配置mybatis中间件的实现_第6张图片

控制层UserController:

注入业务层接口,增加测试查询方法getUserById();

springboot项目整合mybatis并配置mybatis中间件的实现_第7张图片

映射mapper文件:

springboot项目整合mybatis并配置mybatis中间件的实现_第8张图片

其中namespace对应持久化层dao的路径,resultMap为数据表字段与实体映射类属性的关联,type为实体映射类的路径,select查询配置中resultType为查询结果的对象类型路径。

启动项目

启动项目并访问http://localhost:8866/test测试配置情况

springboot项目整合mybatis并配置mybatis中间件的实现_第9张图片

application.xml配置文件中增加日志输出sql语句的配置:

springboot项目整合mybatis并配置mybatis中间件的实现_第10张图片

重启项目后再次测试接口:

springboot项目整合mybatis并配置mybatis中间件的实现_第11张图片

springboot默认使用HikariPool数据库连接池。

到此这篇关于springboot项目整合mybatis并配置mybatis中间件的实现的文章就介绍到这了,更多相关springboot整合mybatis内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(springboot项目整合mybatis并配置mybatis中间件的实现)