• SpringBoot(九):SpringBoot集成Mybatis


    (1)新建一个SpringBoot工程,在pom.xml中配置相关jar依赖

    贴代码:

     <!--加载mybatis整合springboot-->
        <dependency>
          <groupId>org.mybatis.spring.boot</groupId>
          <artifactId>mybatis-spring-boot-starter</artifactId>
          <version>1.3.1</version>
        </dependency>
        <!--MySQL的jdbc驱动包-->
        <dependency>
          <groupId>mysql</groupId>
          <artifactId>mysql-connector-java</artifactId>
        </dependency>

    (2)在SpringBoot的核心配置文件application.properties中配置数据源

    需要注意的是6.0以上的驱动连接字符串为 com.mysql.cj.jdbc.Driver  比之前多了一个cj

    贴代码:
    spring.datasource.username=root
    spring.datasource.password=root
    #6.0以上的驱动连接字符串为 com.mysql.cj.jdbc.Driver  比之前多了一个cj
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    spring.datasource.url=jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT
    大家自己创建Model Mapper dao层 写好代码,这里我就不自己写了,我自动生成一下!


    导入GeneratorMapper.xml文件,按照文件内的注释修改配置参数(省略)
    在pom文件里面配置自动生成插件


    生成完毕
    编写Service层  Controller层 
    错误级别调节:

    Controller层如下

    mapper如下:

    这里需要添加一个注解   @Mapper    //把该mapper接口变成spring容器中的一个bean

    运行测试:

    以上到此为止

    补充:

    上面的项目接口StudentMapper类和StudentMapper.xml是在同一个包下的,如果不在同一个包如何处理?

    如图:

    那么我们就需要在application里面指定mapper.xml的位置

    #指定mapper.xml的位置
    mybatis.mapper-locations=classpath:mapper/*.xml

  • 相关阅读:
    实现vue项目改造服务端渲染
    vue项目seo问题简单解决,并生成sitemap
    vue element-table滚动条样式修改
    vue全局注册事件
    获取浏览器数据
    vscode配置,vue开发环境
    在项目中使用facebook聊天插件
    linux配置nuxt项目
    Vue中实现div编辑效果,及contenteditable设置为plaintext-only与true的区别
    js中判断对象是否存在
  • 原文地址:https://www.cnblogs.com/shenlailai/p/10465030.html
Copyright © 2020-2023  润新知