springboot集成mybatis

6.springboot集成mybatis

6.1导入mybatis的起步依赖

在pom文件中添加启动器(这个启动器是mybatis自己提供的)

springboot集成mybatis_第1张图片

             

                     org.mybatis.spring.boot

                     mybatis-spring-boot-starter

                     1.1.1

             

 

添加mysql数据库连接的坐标

springboot集成mybatis_第2张图片

             

                     mysql

                     mysql-connector-java

             

 

6.2导入数据库的配置文件及配置Mybatis

注意:配置文件中的格式和之前有所不同

#数据库连接信息

spring.datasource.driverClassName=com.mysql.jdbc.Driver

spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf8

spring.datasource.username=root

spring.datasource.password=root

 

 

配置Mybatis

springboot集成mybatis_第3张图片

#配置mybatis的信息

#spring集成Mybatis环境

#pojo别名扫描包

mybatis.type-aliases-package=com.rzq.domain

#加载Mybatis映射文件

mybatis.mapper-locations=classpath:mapper/*Mapper.xml

 

6.3配置实体类及mapper

domain.User

springboot集成mybatis_第4张图片

 

mapper.UserMapper

springboot集成mybatis_第5张图片

 

 

6.4测试功能,编写controller

 

controller.MybatisController

userMapper下面有错,可以忽略,因为此时并没有这个Mapper,待会程序运行时会动态创建一个mapper

springboot集成mybatis_第6张图片

 

 

你可能感兴趣的:(springboot)