springboot整合mybatis完整示例, mapper注解方式和xml配置文件方式實現(xiàn)(我們要優(yōu)雅地編程)

一、注解方式

  1. pom
    <dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>2.0.0</version>
    </dependency>
     <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
    </dependency>
    <!--lombok-->
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.16.10</version>
    </dependency>

說明: springboot版本: 2.1.5.RELEASE

  1. application.properties
# mysql
spring.datasource.url=jdbc:mysql://212.64.xxx.xxx:3306/test?autoR&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
spring.datasource.username=xxx
spring.datasource.password=xxx
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

3.在啟動類中添加對 mapper 包掃描@MapperScan

package com.wangzaiplus.test;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;

@SpringBootApplication
@MapperScan("com.wangzaiplus.test.mapper")
public class TestApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class, args);
    }

    /**
     * 跨域
     * @return
     */
    @Bean
    public CorsFilter corsFilter() {
        final UrlBasedCorsConfigurationSource urlBasedCorsConfigurationSource = new UrlBasedCorsConfigurationSource();
        final CorsConfiguration corsConfiguration = new CorsConfiguration();
        corsConfiguration.setAllowCredentials(true);
        corsConfiguration.addAllowedOrigin("*");
        corsConfiguration.addAllowedHeader("*");
        corsConfiguration.addAllowedMethod("*");
        urlBasedCorsConfigurationSource.registerCorsConfiguration("/**", corsConfiguration);
        return new CorsFilter(urlBasedCorsConfigurationSource);
    }

}


說明: springboot項目添加corsFilter解決跨域問題

也可以直接在 Mapper 類上面添加注解@Mapper

  1. mapper
package com.wangzaiplus.test.mapper;

import com.wangzaiplus.test.pojo.User;
import org.apache.ibatis.annotations.*;
import org.apache.ibatis.type.JdbcType;

import java.util.List;

public interface UserMapper {

    @Select("select * from user")
    @Results({
            @Result(property = "username", column = "username", jdbcType = JdbcType.VARCHAR),
            @Result(property = "password", column = "password")
    })
    List<User> selectAll();

    @Select("select * from user where id = #{id}")
    @Results({
            @Result(property = "username", column = "username", jdbcType = JdbcType.VARCHAR),
            @Result(property = "password", column = "password")
    })
    User selectOne(Integer id);

    @Insert("insert into user(username, password) values(#{username}, #{password})")
    void insert(User user);

    @Update("update user set username=#{username}, password=#{password} where id = #{id}")
    void update(User user);

    @Delete("delete from user where id = #{id}")
    void delete(Integer id);

}

  1. controller
package com.wangzaiplus.test.controller;

import com.wangzaiplus.test.pojo.User;
import com.wangzaiplus.test.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private UserService userService;

    @GetMapping("users")
    public String getAll() {
        List<User> users = userService.getAll();
        return users.toString();
    }

    @GetMapping("{id}")
    public String getOne(@PathVariable Integer id) {
        User user = userService.getOne(id);
        return user + "";
    }

    @PostMapping
    public String add(User user) {
        userService.add(user);
        return "nice";
    }

    @PutMapping
    public String update(User user) {
        userService.update(user);
        return "nice";
    }

    @DeleteMapping("{id}")
    public String delete(@PathVariable Integer id) {
        userService.delete(id);
        return "nice";
    }

}


說明: restful接口風格

  1. service
package com.wangzaiplus.test.service;

import com.wangzaiplus.test.pojo.User;

import java.util.List;

public interface UserService {

    List<User> getAll();

    User getOne(Integer id);

    void add(User user);

    void update(User user);

    void delete(Integer id);

}


  1. impl
package com.wangzaiplus.test.service.impl;

import com.wangzaiplus.test.mapper.UserMapper;
import com.wangzaiplus.test.pojo.User;
import com.wangzaiplus.test.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    private UserMapper userMapper;

    @Override
    public List<User> getAll() {
        return userMapper.selectAll();
    }

    @Override
    public User getOne(Integer id) {
        return userMapper.selectOne(id);
    }

    @Override
    public void add(User user) {
        userMapper.insert(user);
    }

    @Override
    public void update(User user) {
        userMapper.update(user);
    }

    @Override
    public void delete(Integer id) {
        userMapper.delete(id);
    }

}


說明: 僅供示例, 邏輯嚴謹性暫不考慮

  1. pojo
package com.wangzaiplus.test.pojo;

import lombok.Data;

@Data
public class User {

    private Integer id;
    private String username;
    private String password;

}

說明: @Data lombok

9.sql

CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `unq_username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


  1. 接口請求
  • add
image.png
image.png
  • update
image.png
image.png
  • delete
image.png
image.png
  • getOne
image.png
  • getAll
image.png

說明: 截圖請求參數(shù)id與數(shù)據(jù)庫id不對應(yīng)問題, 這是由于我接口文檔默認值設(shè)為1或2的, 請求成功后接口管理工具自動刷新顯示默認值id=1了, 所以看著好像不對, 實際沒問題

以上代碼均通過測試

二够挂、xml方式

  1. pom文件<build>節(jié)點下添加
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>

說明: 如果不添加此節(jié)點mybatis的mapper.xml文件都會被漏掉, 會出現(xiàn)org.apache.ibatis.binding.BindingException Invalid bound statement (not found)異常

  1. mapper java
package com.wangzaiplus.test.mapper;

import com.wangzaiplus.test.pojo.User;

import java.util.List;

public interface UserMapper {

    List<User> selectAll();

    User selectOne(Integer id);

    void insert(User user);

    void update(User user);

    void delete(Integer id);

}

說明: 不需要@Select @Insert等注解了

  1. 新建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.wangzaiplus.test.mapper.UserMapper" >
    <resultMap id="BaseResultMap" type="com.wangzaiplus.test.pojo.User" >
        <id column="id" property="id" jdbcType="INTEGER" />
        <result column="username" property="username" jdbcType="VARCHAR" />
        <result column="password" property="password" jdbcType="VARCHAR" />
    </resultMap>

    <sql id="Base_Column_List" >
        id, username, password
    </sql>

    <select id="selectAll" resultMap="BaseResultMap">
        SELECT
        <include refid="Base_Column_List" />
        FROM user
    </select>

    <select id="selectOne" parameterType="int" resultMap="BaseResultMap">
        SELECT
        <include refid="Base_Column_List" />
        FROM user
        WHERE id = #{id}
    </select>

    <insert id="insert" parameterType="com.wangzaiplus.test.pojo.User">
        INSERT INTO user(username, password) VALUES (#{username}, #{password})
    </insert>

    <update id="update" parameterType="com.wangzaiplus.test.pojo.User">
        UPDATE user SET
        <if test="username != null">
            username = #{username},
        </if>
        <if test="password != null">
            password = #{password}
        </if>
        WHERE id = #{id}
    </update>

    <delete id="delete" parameterType="int">
        DELETE FROM user WHERE id =#{id}
    </delete>
</mapper>

說明: 相當于將上個版本@Select @Insert注解用xml配置文件形式代替而已

  1. 其他都不需要修改

參考文章: https://www.cnblogs.com/ityouknow/p/6037431.html

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末沈条,一起剝皮案震驚了整個濱河市捷泞,隨后出現(xiàn)的幾起案子拓劝,更是在濱河造成了極大的恐慌,老刑警劉巖今豆,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件莉测,死亡現(xiàn)場離奇詭異颜骤,居然都是意外死亡,警方通過查閱死者的電腦和手機捣卤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門忍抽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人董朝,你說我怎么就攤上這事梯找。” “怎么了益涧?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長驯鳖。 經(jīng)常有香客問我闲询,道長,這世上最難降的妖魔是什么浅辙? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任扭弧,我火速辦了婚禮,結(jié)果婚禮上记舆,老公的妹妹穿的比我還像新娘鸽捻。我一直安慰自己,他們只是感情好泽腮,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布御蒲。 她就那樣靜靜地躺著,像睡著了一般诊赊。 火紅的嫁衣襯著肌膚如雪厚满。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天碧磅,我揣著相機與錄音碘箍,去河邊找鬼。 笑死鲸郊,一個胖子當著我的面吹牛丰榴,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播秆撮,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼四濒,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起峻黍,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤复隆,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后姆涩,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體挽拂,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年骨饿,在試婚紗的時候發(fā)現(xiàn)自己被綠了亏栈。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡宏赘,死狀恐怖绒北,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情察署,我是刑警寧澤闷游,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站贴汪,受9級特大地震影響脐往,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜扳埂,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一业簿、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧阳懂,春花似錦梅尤、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至号枕,卻和暖如春矾湃,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背堕澄。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工邀跃, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蛙紫。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓拍屑,卻偏偏與公主長得像,于是被迫代替她去往敵國和親坑傅。 傳聞我的和親對象是個殘疾皇子僵驰,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容