首頁  >  文章  >  Java  >  Spring Boot下MyBatis的設定指南

Spring Boot下MyBatis的設定指南

王林
王林原創
2024-02-26 08:57:051225瀏覽

基于Spring Boot的MyBatis配置详解

基於Spring Boot的MyBatis配置詳解

Spring Boot是一種快速開發應用程式的框架,而MyBatis是一個流行的持久化框架。在Spring Boot中使用MyBatis可以簡化資料庫存取和資料持久化的過程。本文將詳細解釋如何在Spring Boot中設定和使用MyBatis,並提供具體的程式碼範例。

一、MyBatis設定

  1. 加入相關依賴

#在使用MyBatis之前,首先需要在pom.xml檔案中加入相關的依賴。

<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.1.4</version>
</dependency>
  1. 配置資料來源

在Spring Boot中,可以使用內嵌的H2資料庫作為示範。在application.properties檔案中新增以下設定:

spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
  1. 設定MyBatis

在application.properties檔案中新增下列設定:

mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.example.domain

其中, mapper-locations指定了MyBatis對映檔案的位置,type-aliases-package指定了實體類別的套件名稱。

  1. 建立實體類別

建立一個User類別作為範例實體類別:

package com.example.domain;

public class User {
    private Long id;
    private String name;
    // 省略getter和setter方法
}
  1. 建立Mapper介面

建立一個UserMapper接口,在接口中定義需要執行的資料庫操作:

package com.example.mapper;

import com.example.domain.User;
import org.apache.ibatis.annotations.Mapper;

@Mapper
public interface UserMapper {
    User getUserById(Long id);
    void saveUser(User user);
    void updateUser(User user);
    void deleteUser(Long id);
}
  1. 建立Mapper映射檔

在resources目錄下建立mapper資料​​夾,並在該資料夾下建立UserMapper.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.example.mapper.UserMapper">
    <resultMap id="BaseResultMap" type="com.example.domain.User">
        <id column="id" property="id" jdbcType="BIGINT"/>
        <result column="name" property="name" jdbcType="VARCHAR"/>
    </resultMap>
    <select id="getUserById" resultMap="BaseResultMap">
        SELECT * FROM user WHERE id = #{id}
    </select>
    <insert id="saveUser">
        INSERT INTO user(name) VALUES(#{name})
    </insert>
    <update id="updateUser">
        UPDATE user SET name = #{name} WHERE id = #{id}
    </update>
    <delete id="deleteUser">
        DELETE FROM user WHERE id = #{id}
    </delete>
</mapper>

二、使用MyBatis進行資料庫操作

  1. 編寫Service類別

編寫一個UserService類,用於執行特定的資料庫操作:

package com.example.service;

import com.example.domain.User;
import com.example.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class UserService {
    @Autowired
    private UserMapper userMapper;

    public User getUserById(Long id) {
        return userMapper.getUserById(id);
    }

    public void saveUser(User user) {
        userMapper.saveUser(user);
    }

    public void updateUser(User user) {
        userMapper.updateUser(user);
    }

    public void deleteUser(Long id) {
        userMapper.deleteUser(id);
    }
}
  1. 編寫Controller類別

#編寫一個UserController類,用於接收外部請求並呼叫對應的Service方法:

package com.example.controller;

import com.example.domain.User;
import com.example.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping("/users")
public class UserController {
    @Autowired
    private UserService userService;

    @GetMapping("/{id}")
    public User getUserById(@PathVariable Long id) {
        return userService.getUserById(id);
    }

    @PostMapping("/")
    public void saveUser(@RequestBody User user) {
        userService.saveUser(user);
    }

    @PutMapping("/{id}")
    public void updateUser(@PathVariable Long id, @RequestBody User user) {
        user.setId(id);
        userService.updateUser(user);
    }

    @DeleteMapping("/{id}")
    public void deleteUser(@PathVariable Long id) {
        userService.deleteUser(id);
    }
}
  1. 啟動應用程式

編寫一個啟動類,並新增@SpringBootApplication註解:

package com.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
  1. #測試介面

可以使用Postman等工具發送HTTP請求,測試介面的呼叫。例如,發送GET請求:localhost:8080/users/1,即可查詢id為1的使用者資訊。

結語

本文詳解了在基於Spring Boot的專案中配置和使用MyBatis的過程,並提供了相關的程式碼範例。透過以上步驟,您可以在Spring Boot專案中輕鬆整合並使用MyBatis進行資料庫操作。希望本文對您有幫助!

以上是Spring Boot下MyBatis的設定指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn