首頁 > 軟體

SpringBoot整合Mybatis與MybatisPlus方法詳細講解

2023-01-20 14:00:09

一、整合MyBatis操作

官網:MyBatis · GitHub

SpringBoot官方的Starter:spring-boot-starter-*

第三方的starter的格式: *-spring-boot-starter

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

1、設定模式

全域性組態檔

  • SqlSessionFactory: 自動設定好了
  • SqlSession:自動設定了 SqlSessionTemplate 組合了SqlSession
  • @Import(AutoConfiguredMapperScannerRegistrar.class);
  • Mapper: 只要我們寫的操作MyBatis的介面標準了 @Mapper 就會被自動掃描進來
  • 可以修改組態檔中 mybatis 開始的所有設定;
@EnableConfigurationProperties(MybatisProperties.class) : MyBatis設定項繫結類。
@AutoConfigureAfter({ DataSourceAutoConfiguration.class, MybatisLanguageDriverAutoConfiguration.class })
public class MybatisAutoConfiguration{}
@ConfigurationProperties(prefix = "mybatis")
public class MybatisProperties
# 設定mybatis規則
mybatis:
  config-location: classpath:mybatis/mybatis-config.xml  #全域性組態檔位置
  mapper-locations: classpath:mybatis/mapper/*.xml  #sql對映檔案位置
Mapper介面--->繫結Xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.atguigu.admin.mapper.AccountMapper">
<!--    public Account getAcct(Long id); -->
    <select id="getAcct" resultType="com.atguigu.admin.bean.Account">
        select * from  account_tbl where  id=#{id}
    </select>
</mapper>

設定 private Configuration configuration; mybatis.configuration下面的所有,就是相當於改mybatis全域性組態檔中的值

# 設定mybatis規則
mybatis:
#  config-location: classpath:mybatis/mybatis-config.xml
  mapper-locations: classpath:mybatis/mapper/*.xml
  configuration:
    map-underscore-to-camel-case: true
 可以不寫全域性;組態檔,所有全域性組態檔的設定都放在configuration設定項中即可

  • 匯入mybatis官方starter
  • 編寫mapper介面。標準@Mapper註解
  • 編寫sql對映檔案並繫結mapper介面
  • 在application.yaml中指定Mapper組態檔的位置,以及指定全域性組態檔的資訊 (建議;設定在mybatis.configuration)

2、註解模式

@Mapper
public interface CityMapper {
    @Select("select * from city where id=#{id}")
    public City getById(Long id);
    public void insert(City city);
}

3、混合模式

@Mapper
public interface CityMapper {
    @Select("select * from city where id=#{id}")
    public City getById(Long id);
    //繫結在mapper對映檔案中
    public void insert(City city);
}

總結:

  • 引入mybatis-starter
  • 設定application.yaml中,指定mapper-location位置即可
  • 編寫Mapper介面並標註@Mapper註解
  • 簡單方法直接註解方式
  • 複雜方法編寫mapper.xml進行繫結對映
  • @MapperScan("com.atguigu.admin.mapper") 簡化,其他的介面就可以不用標註@Mapper註解

二、整合 MyBatis-Plus 完成CRUD

1、什麼是MyBatis-Plus

MyBatis-Plus(簡稱 MP)是一個MyBatis的增強工具,在 MyBatis 的基礎上只做增強不做改變,為簡化開發、提高效率而生。

mybatis plus 官網

建議安裝 MybatisX 外掛

2、整合MyBatis-Plus

        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.4.1</version>
        </dependency>

自動設定

  • MybatisPlusAutoConfiguration 設定類,MybatisPlusProperties 設定項繫結。mybatis-plus:xxx 就是對mybatis-plus的客製化
  • SqlSessionFactory 自動設定好。底層是容器中預設的資料來源
  • mapperLocations 自動設定好的。有預設值。classpath*:/mapper/**/*.xml;任意包的類路徑下的所有mapper資料夾下任意路徑下的所有xml都是sql對映檔案。 建議以後sql對映檔案,放在 mapper下
  • 容器中也自動設定好了 SqlSessionTemplate
  • @Mapper 標註的介面也會被自動掃描;建議直接 @MapperScan("com.atguigu.admin.mapper") 批次掃描就行

優點:

  • 只需要我們的Mapper繼承 BaseMapper 就可以擁有crud能力

3、CRUD功能

    @GetMapping("/user/delete/{id}")
    public String deleteUser(@PathVariable("id") Long id,
                             @RequestParam(value = "pn",defaultValue = "1")Integer pn,
                             RedirectAttributes ra){
        userService.removeById(id);
        ra.addAttribute("pn",pn);
        return "redirect:/dynamic_table";
    }
    @GetMapping("/dynamic_table")
    public String dynamic_table(@RequestParam(value="pn",defaultValue = "1") Integer pn,Model model){
        //表格內容的遍歷
//        response.sendError
//     List<User> users = Arrays.asList(new User("zhangsan", "123456"),
//                new User("lisi", "123444"),
//                new User("haha", "aaaaa"),
//                new User("hehe ", "aaddd"));
//        model.addAttribute("users",users);
//
//        if(users.size()>3){
//            throw new UserTooManyException();
//        }
        //從資料庫中查出user表中的使用者進行展示
        //構造分頁引數
        Page<User> page = new Page<>(pn, 2);
        //呼叫page進行分頁
        Page<User> userPage = userService.page(page, null);
//        userPage.getRecords()
//        userPage.getCurrent()
//        userPage.getPages()
        model.addAttribute("users",userPage);
        return "table/dynamic_table";
    }

Service

@Service
public class UserServiceImpl extends ServiceImpl<UserMapper,User> implements UserService {
}
public interface UserService extends IService<User> {
}

到此這篇關於SpringBoot整合Mybatis與MybatisPlus方法詳細講解的文章就介紹到這了,更多相關SpringBoot整合Mybatis與MybatisPlus內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com