SpringBoot資料訪問之整合mybatis註解版

xbhog發表於2021-08-28

SpringBoot資料訪問之整合mybatis註解版

mybatis註解版:

貼心連結:Github

在網頁下方,找到快速開始文件


上述連結方便讀者查詢。

通過快速開始文件,搭建環境:

建立資料庫:

use  vuesite;
CREATE TABLE city
(
    id      INT PRIMARY KEY auto_increment,
    name    VARCHAR(255),
    state   VARCHAR(255),
    country VARCHAR(255)
);

image-20210808164510638

建立實體類:

package com.xbhog.pojo;

import lombok.Data;

@Data
public class City {
    private Long id;
    private String name;
    private String state;
    private String country;
}

建立Mapper:

建立CityMapper並採用註解的方式實現sql對映的問題:

package com.xbhog.Mapper;

import com.xbhog.pojo.City;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

@Mapper
public interface CityMapper {
    @Select("select * from user where id = #{id}")
    public City getCityId(Long id);
}

建立Service:

package com.xbhog.service;

import com.xbhog.Mapper.CityMapper;
import com.xbhog.pojo.City;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class CityService {
    @Autowired
    CityMapper cityMapper;

    public City getCityId(Long id){
        return cityMapper.getCityId(id);
    }
}

使用Service註解宣告,並將該類加入到容器中,方便後面呼叫,在service層呼叫Mapper層的方法。

建立Controller:

import com.xbhog.pojo.City;
import com.xbhog.service.CityService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.annotation.Resource;

@Controller
public class Mycontro {
    @Autowired
    CityService cityService;


    @ResponseBody
    @GetMapping("/city")
    public City getCity(@RequestParam("id") Long id){
        return cityService.getCityId(id);
    }
}

增加資料庫資訊:

image-20210808171903055

測試:

image-20210808172036566

mybatis混合版:

我們在CItyMapper中新增一個方法:

package com.xbhog.Mapper;

import com.xbhog.pojo.City;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import java.util.List;

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

    public void addCity(City city);
}

這個方法我們採用配置檔案來繫結。

建立CityMapper.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.xbhog.Mapper.CityMapper">
    
    <insert id="addCity" parameterType="com.xbhog.pojo.City">
        insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country});
    </insert>
</mapper>

其中名稱空間與CityMapper要對應,進行插入操作。

在Service層增加方法:

package com.xbhog.service;

import com.xbhog.Mapper.CityMapper;
import com.xbhog.pojo.City;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class CityService {
    @Autowired
    CityMapper cityMapper;

    public void addCity(City city){
        cityMapper.addCity(city);
    }
}

在Controller中增加方法:

import com.xbhog.pojo.City;import com.xbhog.service.CityService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import javax.annotation.Resource;@Controllerpublic class Mycontro {    @Autowired    CityService cityService;    @ResponseBody    @PostMapping("/add")    public City addcity(City city){        cityService.addCity(city);        return city;      }}

通過返回的city來檢視資訊是否正確。

測試:

我們通過PostMan來傳送請求資訊進行測試。

請求的方式為Post,url就是我們Controller中的add請求。post提交的引數:name、state、country。

會自動封裝為City。

image-20210808185953623

從上圖可以發現,我們的id是Null,怎麼樣讓新增後的資料返回id呢,在Mybatis中有useGeneratedKeys自增主鍵,自增主鍵的名字叫id。

這樣新增進去的資料就會將id返回給傳入的city中的id。

<insert id="addCity" parameterType="com.xbhog.pojo.City" useGeneratedKeys="true" keyProperty="id">    insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country});</insert>

也可以採用註解的方式實現:

import com.xbhog.pojo.City;import org.apache.ibatis.annotations.Insert;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Options;import org.apache.ibatis.annotations.Select;import java.util.List;@Mapperpublic interface CityMapper {    @Select("select * from city where id = #{id}")    public City getCityId(Long id);        @Insert("insert into city(`name`,`state`,`country`) values (#{name},#{state},#{country})")    @Options(useGeneratedKeys = true,keyProperty = "id")    public void addCity(City city);}
public City addcity(City city){  //city -->id有值了    cityService.addCity(city);    return city;  }

檢視效果:

image-20210808190845548

參考文獻:

官網:Github

快速開始文件

B站SpringBoot

Mybatis官網

結束:

如果你看到這裡或者正好對你有所幫助,希望能點個關注或者推薦,感謝;

有錯誤的地方,歡迎在評論指出,作者看到會進行修改。

相關文章