美文网首页程序员
简单快捷的在SpringBoot中搭建MyBatis(只需四步)

简单快捷的在SpringBoot中搭建MyBatis(只需四步)

作者: 陈金泽 | 来源:发表于2019-03-21 15:22 被阅读3次

Spring Boot整合Mybatis

部署Mybatis

1.引入依赖

    <!-- mybatis jar -->
    <dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>1.3.2</version>
    </dependency>
    <!--     mysql jar -->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>6.0.6</version>
    </dependency>

2.Mybatis配置

在application.properties中配置Mybatis参数

    #数据库驱动
    spring.datasource.driver-class-name=com.mysql.jdbc.Driver
    #数据库连接url
    spring.datasource.url=jdbc:mysql://localhost:3306/db?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=true
    #数据库账号密码
    spring.datasource.username=root
    spring.datasource.password=

3.创建个操作数据库类的包

在项目下创建一个包 marpper 用来存放操作数据库的类(存放DAO)

4.在Applichation启动类添加注解

添加一个@MapperScan(basePackages = {"xxxxxx"}); xxxxx是操作数据库类包的路径

    //数据库操作类入口
    @MapperScan(basePackages = {"com.example.demo7.mapper"})
    @SpringBootApplication
    public class Demo7Application {
    
        public static void main(String[] args) {
            SpringApplication.run( Demo7Application.class, args );
        }
    
    }

--------------------------------------------------------------------------------cjz

框架搭建完毕

小白也能快速搭建MyBatis框架,学习框架不入坑!
这里是spring-boot-demo:
https://pan.baidu.com/s/1jN5udzNr_WUsosPIYvqrew
提取码:jiml
关注赞赏我:更新更多框架搭建内容!你们的坑我来跳,帮你规避百度上的那些问题教程!

相关文章

网友评论

    本文标题:简单快捷的在SpringBoot中搭建MyBatis(只需四步)

    本文链接:https://www.haomeiwen.com/subject/xzzqvqtx.html