溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot中怎么整合Mybatis

發(fā)布時(shí)間:2021-06-11 16:04:46 來(lái)源:億速云 閱讀:146 作者:Leah 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)SpringBoot中怎么整合Mybatis,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

第一步、pom.xml中引入Mybatis依賴:

(注意:我的SpringBoot版本是2.0.3)

<!-- mybatis依賴begin -->
    <dependency>
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>1.3.0</version>
    </dependency>
    <!-- mybatis依賴end -->
    <!-- mysql驅(qū)動(dòng)begin -->
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
    </dependency>
    <!-- mysql驅(qū)動(dòng)end -->

第二步、application.yml中配置數(shù)據(jù)庫(kù)信息,Mapper信息和mybatis-config信息:

spring:
 datasource:
  username: sblueice
  password: sblueice
  url: jdbc:mysql://localhost:3306/sblueice?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&allowMultiQueries=true&autoReconnect=true&useSSL=false
  driver-class-name: com.mysql.jdbc.Driver

mybatis:
 #Mapper所在位置
 mapper-locations: classpath:mybatis/mapping/*Mapper.xml
 config-location: classpath:mybatis/mybatis-config.xml

說(shuō)明:下面是Mybatis對(duì)應(yīng)的位置信息,對(duì)應(yīng)yml中配置的路徑和名稱

SpringBoot中怎么整合Mybatis

第三步、配置mybatis-config(沒有的創(chuàng)建下就OK):

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD SQL Map Config 3.0//EN" 
  "http://mybatis.org/dtd/mybatis-3-config.dtd">

<configuration>

  <settings> 
    <setting name="cacheEnabled" value="true" /><!-- 全局映射器啟用緩存 -->  
    <!-- 打印查詢語(yǔ)句 -->
    <setting name="logImpl" value="STDOUT_LOGGING" />
  </settings>

  <typeAliases>
    <typeAlias alias="pd" type="com.sblueice.util.PageData" />
  </typeAliases>
</configuration>

第四步、SpringBoot啟動(dòng)類中添加注解@MapperScan("com.sblueice.mapper")

說(shuō)明:這樣會(huì)增加耦合,但是不加又掃描不到,目前沒找到合適的方法解耦,暫時(shí)用這個(gè)注解

@MapperScan("com.sblueice.mapper")
@SpringBootApplication
public class DemoApplication {
 
  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }
 
}

關(guān)于SpringBoot中怎么整合Mybatis就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI