springboot集成mybatis简单过程

Posted seaof

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot集成mybatis简单过程相关的知识,希望对你有一定的参考价值。

springboot集成mybatis简单过程:

1、在pox.xml中加入mybatis的依赖。

<dependency>
  <groupId>org.mybatis.spring.boot</groupId>
  <artifactId>mybatis-spring-boot-starter</artifactId>
  <version>2.1.3</version>
</dependency>

2、在application.yml中配置mybatis映射文件位置。

mybatis:
  mapper-locations: com/hymng/sbt/mapper/*.xml

3、编写mapper接口文件和对应xml文件,注意mapper接口类要使用@Mapper进行注解,对应的xml要放在第二步配置的路径下。

4、在pom.xml的<build>标签中加入以下代码,其作用是让maven插件打包时不遗漏xml格式的文件。

<resources>
  <resource>
    <directory>src/main/java</directory>
    <includes>
      <include>**/*.xml</include>
    </includes>
  </resource>
  <resource>
    <directory>src/main/resources</directory>
    <includes>
      <include>**/*</include>
    </includes>
  </resource>
</resources>

ps:如果不使用xml文件编写sql语句,而是直接将sql写在mybatis相关注解中,可省去第2步和第4步。

以上是关于springboot集成mybatis简单过程的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot集成mybatis框架

SpringBoot系列七:SpringBoot 集成 MyBatis事物配置及使用druid 数据源druid 监控使用

SpringBoot集成mybatis

详解SpringBoot集成Mybatis

详解SpringBoot集成Mybatis

spring boot 学习之路3( 集成mybatis )