SpringBoot系列—4.SpringBoot 整合Mybatis裕便、MP(MyBatis-Plus)

SpringBoot系列—1.IDEA搭建SpringBoot框架
SpringBoot系列—2.SpringBoot攔截器篇
SpringBoot系列—3.SpringBoot Redis篇
SpringBoot系列—4.SpringBoot 整合Mybatis绒净、MP(MyBatis-Plus)
SpringBoot系列—5.SpringBoot 整合Mybatis-Plus分頁

**1.pom.xml引入依賴(mybatis、mysql-connect偿衰、mp)

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

<!-- mysql-connector -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <scope>runtime</scope>
</dependency>

<!-- mybatis-plus -->
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.3.1.tmp</version>
</dependency>

<!-- mybatis-plus代碼生成器 -->
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-generator</artifactId>
    <version>3.3.1.tmp</version>
</dependency>

<!-- freemarker模板 -->
<dependency>
    <groupId>org.freemarker</groupId>
    <artifactId>freemarker</artifactId>
    <version>2.3.29</version>
</dependency>

2.mysql創(chuàng)建數(shù)據(jù)庫挂疆,創(chuàng)建一個user表

image.png

3.配置數(shù)據(jù)庫連接

image.png

# 驅動配置信息
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/demo?characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=12345678
# mybatis掃描包
mybatis.type-aliases-package=com.example.demo.entity
mybatis.mapper-locations=classpath:mybatis/mapper/*.xml
mybatis-plus.type-aliases-package=com.example.demo.entity
mybatis-plus.mapper-locations=classpath:mybatis/mapper/*.xml

4.新建MPCodeGeneratorHelper類,使用mybatis-plus-generator進行代碼生成

image.png

package com.example.demo.helper;

import com.baomidou.mybatisplus.core.toolkit.StringPool;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.InjectionConfig;
import com.baomidou.mybatisplus.generator.config.*;
import com.baomidou.mybatisplus.generator.config.po.TableInfo;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

/**
 * 代碼生成器配置
 */
public class MPCodeGeneratorHelper {
    //  數(shù)據(jù)庫連接url
    private static String dbUrl;
    // 數(shù)據(jù)庫驅動
    private static String dbDriverName;
    //數(shù)據(jù)庫連接名稱
    private static String dbUserName;
    //數(shù)據(jù)庫連接密碼
    private static String dbPassword;

    public static void main(String[] args) {
        // 加載DB配置信息
        loadDbProperty();
        // 代碼生成器
        AutoGenerator mpg = new AutoGenerator();
        // 全局配置
        GlobalConfig gc = new GlobalConfig();
        String projectPath = System.getProperty("user.dir");
        gc.setOutputDir(projectPath + "/src/main/java");
        gc.setAuthor("Kevin");
        gc.setOpen(false);
        mpg.setGlobalConfig(gc);

        // 數(shù)據(jù)源配置
        DataSourceConfig dsc = new DataSourceConfig();
        dsc.setUrl(dbUrl);
        dsc.setDriverName(dbDriverName);
        dsc.setUsername(dbUserName);
        dsc.setPassword(dbPassword);
        mpg.setDataSource(dsc);

        // 包配置
        PackageConfig pc = new PackageConfig();
        pc.setParent("com.example.demo");
        mpg.setPackageInfo(pc);

        // 自定義配置
        InjectionConfig cfg = new InjectionConfig() {
            @Override
            public void initMap() {
            }
        };
        // 自定義輸出配置
        List<FileOutConfig> focList = new ArrayList<>();
        // 自定義配置會被優(yōu)先輸出
        focList.add(new FileOutConfig("/templates/mapper.xml.ftl") {
            @Override
            public String outputFile(TableInfo tableInfo) {
                return projectPath + "/src/main/resources/mybatis/mapper/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
            }
        });
        cfg.setFileOutConfigList(focList);
        mpg.setCfg(cfg);
        // 配置模板
        TemplateConfig templateConfig = new TemplateConfig();
        templateConfig.setXml(null);
        mpg.setTemplate(templateConfig);
        // 策略配置
        StrategyConfig strategy = new StrategyConfig();
        strategy.setNaming(NamingStrategy.underline_to_camel);
        strategy.setColumnNaming(NamingStrategy.underline_to_camel);
        strategy.setEntityLombokModel(false);
        strategy.setRestControllerStyle(true);
        strategy.setControllerMappingHyphenStyle(true);
        strategy.setTablePrefix(pc.getModuleName() + "_");
        mpg.setStrategy(strategy);
        mpg.setTemplateEngine(new FreemarkerTemplateEngine());
        mpg.execute();
    }

    /**
     * 加載數(shù)據(jù)量屬性配置信息
     */
    private static void loadDbProperty(){
        Properties props = null;
        try {
            Resource resource = new ClassPathResource("/application.properties");//
            props = PropertiesLoaderUtils.loadProperties(resource);
        } catch (IOException e) {
            e.printStackTrace();
        }
        dbUrl = props.getProperty("spring.datasource.url","");
        dbDriverName = props.getProperty("spring.datasource.driverClassName","");
        dbUserName = props.getProperty("spring.datasource.username","");
        dbPassword = props.getProperty("spring.datasource.password","");
    }
}

5.主類新增Mapper掃描注解@MapperScan("com.example.demo.mapper")

package com.example.demo;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
@MapperScan("com.example.demo.mapper")
public class DemoApplication {

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

}

6.右鍵MPCodeGeneratorHelper下翎,Run ‘MPCodeGeneratorHelper.main()’缤言,系統(tǒng)會自動生成entity、controller视事、mapper胆萧、service

image.png

image.png

7.使用mybatis-plus進行增刪改查
1)編寫UserController.java (如果userMapper出現(xiàn):Could not autowire. No beans of 'UserMapper' type found.
解決辦法:在UserMapper.java添加類注解@Repository即可

package com.example.demo.controller;

import com.example.demo.entity.User;
import com.example.demo.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

/**
 * <p>
 *  前端控制器
 * </p>
 *
 * @author Kevin
 * @since 2020-02-05
 */
@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private UserMapper userMapper;

    /**
     * 增
     * @return
     */
    @RequestMapping("/add")
    @ResponseBody
    private String add(){
        User user = new User();
        user.setName("Kevin");
        user.setAge(24);
        user.setSex("男");
        int result = userMapper.insert(user);
        return result==0?"數(shù)據(jù)新增失敗":"數(shù)據(jù)新增成功";
    }

    @RequestMapping("/delete")
    @ResponseBody
    private String delete(){
        return userMapper.deleteById(1)==0?"數(shù)據(jù)刪除失敗":"數(shù)據(jù)刪除成功";
    }

    @RequestMapping("/update")
    @ResponseBody
    private String update(){
        User user = userMapper.selectById(1);
        user.setName("Tony");
        return userMapper.updateById(user)==0?"數(shù)據(jù)更新失敗":"數(shù)據(jù)更新成功";
    }

    @RequestMapping("/query")
    @ResponseBody
    private String query(){
        return userMapper.selectList(null).toString();
    }
}

2)為防止請求返回的中文出現(xiàn)亂碼,新增字符集攔截器設置UTF-8即可

package com.example.demo.interceptor;

import org.springframework.context.annotation.Configuration;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

import java.nio.charset.StandardCharsets;
import java.util.List;

@Configuration
public class InterceptorConfig extends WebMvcConfigurationSupport {

    @Override
    protected void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
        // 解決controller返回字符串中文亂碼問題
        for (HttpMessageConverter<?> converter : converters) {
            if (converter instanceof StringHttpMessageConverter) {
                ((StringHttpMessageConverter)converter).setDefaultCharset(StandardCharsets.UTF_8);
            }
        }
    }
}

3)測試mybatis-plus是否生效


新增數(shù)據(jù)
數(shù)據(jù)庫數(shù)據(jù)
查詢數(shù)據(jù)
更新數(shù)據(jù)
數(shù)據(jù)庫數(shù)據(jù)
刪除數(shù)據(jù)
數(shù)據(jù)庫數(shù)據(jù)

8.SpringBoot整合Mybatis郑口、MP(Mybatis-Plus)完畢鸳碧,MP:https://mp.baomidou.com/

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末盾鳞,一起剝皮案震驚了整個濱河市犬性,隨后出現(xiàn)的幾起案子瞻离,更是在濱河造成了極大的恐慌,老刑警劉巖乒裆,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件套利,死亡現(xiàn)場離奇詭異,居然都是意外死亡鹤耍,警方通過查閱死者的電腦和手機肉迫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來稿黄,“玉大人喊衫,你說我怎么就攤上這事「伺拢” “怎么了族购?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長陵珍。 經常有香客問我寝杖,道長,這世上最難降的妖魔是什么互纯? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任瑟幕,我火速辦了婚禮,結果婚禮上留潦,老公的妹妹穿的比我還像新娘只盹。我一直安慰自己,他們只是感情好兔院,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布殖卑。 她就那樣靜靜地躺著,像睡著了一般秆乳。 火紅的嫁衣襯著肌膚如雪懦鼠。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天屹堰,我揣著相機與錄音肛冶,去河邊找鬼。 笑死扯键,一個胖子當著我的面吹牛睦袖,可吹牛的內容都是我干的。 我是一名探鬼主播荣刑,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼馅笙,長吁一口氣:“原來是場噩夢啊……” “哼伦乔!你這毒婦竟也來了?” 一聲冷哼從身側響起董习,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤烈和,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后皿淋,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體招刹,經...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年窝趣,在試婚紗的時候發(fā)現(xiàn)自己被綠了疯暑。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡哑舒,死狀恐怖妇拯,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情洗鸵,我是刑警寧澤越锈,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站预麸,受9級特大地震影響瞪浸,放射性物質發(fā)生泄漏。R本人自食惡果不足惜吏祸,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一对蒲、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧贡翘,春花似錦蹈矮、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至踊东,卻和暖如春北滥,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背闸翅。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工再芋, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留坚冀,地道東北人济赎。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親司训。 傳聞我的和親對象是個殘疾皇子构捡,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內容