91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatisPlus多表聯查怎么實現

發布時間:2022-08-09 17:24:19 來源:億速云 閱讀:189 作者:iii 欄目:開發技術

這篇文章主要介紹“MyBatisPlus多表聯查怎么實現”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“MyBatisPlus多表聯查怎么實現”文章能幫助大家解決問題。

代碼

controller

package com.example.demo.business.blog.controller;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.example.demo.business.blog.mapper.BlogMapper;
import com.example.demo.business.blog.vo.BlogVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Api(tags = "自定義SQL")
@RestController
@RequestMapping("/blog")
public class BlogController {
 
    @Autowired
    private BlogMapper blogMapper;
 
    @ApiOperation("靜態查詢")
    @GetMapping("staticQuery")
    public String staticQuery() {
        return blogMapper.findUserNameByBlogId(1L);
    }
 
    @ApiOperation("動態查詢")
    @GetMapping("dynamicQuery")
    public IPage<BlogVO> dynamicQuery(Page<BlogVO> page, String nickName, String title) {
        QueryWrapper<BlogVO> queryWrapper = new QueryWrapper<>();
        queryWrapper.like(StringUtils.hasText(nickName), "t_user.nick_name", nickName);
        queryWrapper.like(StringUtils.hasText(title), "t_blog.title", title);
        queryWrapper.eq("t_blog.deleted_flag", 0);
        queryWrapper.eq("t_user.deleted_flag", 0);
        queryWrapper.apply("t_blog.user_id = t_user.id");
        return blogMapper.findBlog(page, queryWrapper);
    }
}

 Mapper

package com.example.demo.business.blog.mapper;
 
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.example.demo.business.blog.entity.Blog;
import com.example.demo.business.blog.vo.BlogVO;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Repository
public interface BlogMapper extends BaseMapper<Blog> {
 
    /**
     * 靜態查詢
     */
    @Select("SELECT t_user.user_name " +
            " FROM t_blog, t_user " +
            " WHERE t_blog.id = #{id} " +
            "     AND t_blog.user_id = t_user.id")
    String findUserNameByBlogId(@Param("id") Long id);
 
    /**
     * 動態查詢
     */
    @Select("SELECT * " +
            " FROM t_blog, t_user " +
            " ${ew.customSqlSegment} ")
    IPage<BlogVO> findBlog(IPage<BlogVO> page, @Param("ew") Wrapper wrapper);
}

VO

package com.example.demo.business.blog.vo;
 
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class BlogVO {
    private Long id;
 
    private Long userId;
 
    private String userName;
 
    /**
     * 標題
     */
    private String title;
 
    /**
     * 摘要
     */
    private String description;
 
    /**
     * 內容
     */
    private String content;
 
    /**
     * 創建時間
     */
    private LocalDateTime createTime;
 
    /**
     * 修改時間
     */
    private LocalDateTime updateTime;
 
    /**
     * 昵稱(這個是t_user的字段)
     */
    private String nickName;
}

建庫建表

DROP DATABASE IF EXISTS mp;
CREATE DATABASE mp DEFAULT CHARACTER SET utf8;
USE mp;
 
DROP TABLE IF EXISTS `t_user`;
DROP TABLE IF EXISTS `t_blog`;
SET NAMES utf8mb4;
 
CREATE TABLE `t_user`
(
    `id`           BIGINT(0) NOT NULL AUTO_INCREMENT,
    `user_name`    VARCHAR(64) NOT NULL COMMENT '用戶名(不能重復)',
    `nick_name`    VARCHAR(64) NOT NULL COMMENT '昵稱(可以重復)',
    `email`        VARCHAR(64) COMMENT '郵箱',
    `create_time`  DATETIME(0) NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創建時間',
    `update_time`  DATETIME(0) NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改時間',
    `deleted_flag` BIGINT(0) NOT NULL DEFAULT 0 COMMENT '0:未刪除 其他:已刪除',
    PRIMARY KEY (`id`) USING BTREE,
    UNIQUE KEY `index_user_name_deleted_flag`(`user_name`, `deleted_flag`),
    KEY `index_create_time`(`create_time`)
) ENGINE = InnoDB COMMENT = '用戶';
 
CREATE TABLE `t_blog`
(
    `id`           BIGINT(0) NOT NULL AUTO_INCREMENT,
    `user_id`      BIGINT(0) NOT NULL,
    `user_name`    VARCHAR(64) NOT NULL,
    `title`        VARCHAR(256) CHARACTER SET utf8mb4 NOT NULL COMMENT '標題',
    `description`  VARCHAR(256) CHARACTER SET utf8mb4 NOT NULL COMMENT '摘要',
    `content`      LONGTEXT CHARACTER SET utf8mb4 NOT NULL COMMENT '內容',
    `create_time`  DATETIME(0) NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創建時間',
    `update_time`  DATETIME(0) NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改時間',
    `deleted_flag` BIGINT(0) NOT NULL DEFAULT 0 COMMENT '0:未刪除 其他:已刪除',
    PRIMARY KEY (`id`) USING BTREE,
    KEY `index_user_id`(`user_id`),
    KEY `index_create_time`(`create_time`)
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COMMENT = '博客';
 
INSERT INTO `t_user` VALUES (1, 'knife', '刀刃', 'abc@qq.com', '2021-01-23 09:33:36', '2021-01-23 09:33:36', 0);
INSERT INTO `t_user` VALUES (2, 'sky', '天藍', '123@qq.com', '2021-01-24 18:12:21', '2021-01-24 18:12:21', 0);
 
INSERT INTO `t_blog` VALUES (1, 1, 'knife', 'Java中枚舉的用法',
                             '本文介紹Java的枚舉類的使用',
                             '本文介紹Java的枚舉類的使用',
                             '2021-01-23 11:33:36', '2021-01-23 11:33:36', 0);
INSERT INTO `t_blog` VALUES (2, 1, 'knife', 'Java中泛型的用法',
                             '本文介紹Java的泛型的使用。',
                             '本文介紹Java的泛型的使用。',
                             '2021-01-28 23:37:37', '2021-01-28 23:37:37', 0);
INSERT INTO `t_blog` VALUES (3, 1, 'knife', 'Java的HashMap的原理',
                             '本文介紹Java的HashMap的原理。',
                             '本文介紹Java的HashMap的原理。',
                             '2021-05-28 09:06:06', '2021-05-28 09:06:06', 0);
INSERT INTO `t_blog` VALUES (4, 1, 'knife', 'Java中BigDecimal的用法',
                             '本文介紹Java的BigDecimal的使用。',
                             '本文介紹Java的BigDecimal的使用。',
                             '2021-06-24 20:36:54', '2021-06-24 20:36:54', 0);
INSERT INTO `t_blog` VALUES (5, 1, 'knife', 'Java中反射的用法',
                             '本文介紹Java的反射的使用。',
                             '本文介紹Java的反射的使用。',
                             '2021-10-28 22:24:18', '2021-10-28 22:24:18', 0);
 
 
INSERT INTO `t_blog` VALUES (6, 2, 'sky', 'Vue-cli的使用',
                             'Vue-cli是Vue的一個腳手架工具',
                             'Vue-cli可以用來創建vue項目',
                             '2021-02-23 11:34:36', '2021-02-25 14:33:36', 0);
INSERT INTO `t_blog` VALUES (7, 2, 'sky', 'Vuex的用法',
                             'Vuex是vue用于共享變量的插件',
                             '一般使用vuex來共享變量',
                             '2021-03-28 23:37:37', '2021-03-28 23:37:37', 0);

配置

application.yml

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/mp?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false
    password: 222333
    username: root
 
#mybatis-plus配置控制臺打印完整帶參數SQL語句
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

MyBatis-Plus分頁插件配置

package com.example.demo.config;
 
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
 
@Configuration
public class MyBatisPlusConfig {
 
    /**
     * 分頁插件
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
}

依賴

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
 
    <groupId>com.example</groupId>
    <artifactId>MyBatis-Plus_Multiple</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
 
    <name>MyBatis-Plus_Multiple</name>
    <description>Demo project for Spring Boot</description>
 
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.12.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
 
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>
 
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
 
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
 
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.5.1</version>
        </dependency>
 
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
 
        <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>knife4j-spring-boot-starter</artifactId>
            <version>3.0.3</version>
        </dependency>
    </dependencies>
 
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <!-- 指定maven編譯的jdk版本。若不指定,maven3默認用jdk 1.5 maven2默認用jdk1.3 -->
                <configuration>
                    <source>8</source>
                    <target>8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

測試

訪問knife4j頁面:http://localhost:8080/doc.html

MyBatisPlus多表聯查怎么實現

1.靜態查詢

MyBatisPlus多表聯查怎么實現

2.動態查詢

  1.不傳條件

MyBatisPlus多表聯查怎么實現

結果:(可以查到所有數據) 

MyBatisPlus多表聯查怎么實現

后端輸出

Creating a new SqlSession
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@60bbb9ec] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@1853643659 wrapping com.mysql.cj.jdbc.ConnectionImpl@6a43d29c] will not be managed by Spring
==>  Preparing: SELECT COUNT(*) AS total FROM t_blog, t_user WHERE (t_blog.deleted_flag = ? AND t_user.deleted_flag = ? AND t_blog.user_id = t_user.id)
==> Parameters: 0(Integer), 0(Integer)
<==    Columns: total
<==        Row: 7
<==      Total: 1
==>  Preparing: SELECT * FROM t_blog, t_user WHERE (t_blog.deleted_flag = ? AND t_user.deleted_flag = ? AND t_blog.user_id = t_user.id) LIMIT ?
==> Parameters: 0(Integer), 0(Integer), 10(Long)
<==    Columns: id, user_id, user_name, title, description, content, create_time, update_time, deleted_flag, id, user_name, nick_name, email, create_time, update_time, deleted_flag
<==        Row: 1, 1, knife, Java中枚舉的用法, 本文介紹Java的枚舉類的使用, <<BLOB>>, 2021-01-23 11:33:36, 2021-01-23 11:33:36, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 2, 1, knife, Java中泛型的用法, 本文介紹Java的泛型的使用。, <<BLOB>>, 2021-01-28 23:37:37, 2021-01-28 23:37:37, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 3, 1, knife, Java的HashMap的原理, 本文介紹Java的HashMap的原理。, <<BLOB>>, 2021-05-28 09:06:06, 2021-05-28 09:06:06, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 4, 1, knife, Java中BigDecimal的用法, 本文介紹Java的BigDecimal的使用。, <<BLOB>>, 2021-06-24 20:36:54, 2021-06-24 20:36:54, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 5, 1, knife, Java中反射的用法, 本文介紹Java的反射的使用。, <<BLOB>>, 2021-10-28 22:24:18, 2021-10-28 22:24:18, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 6, 2, sky, Vue-cli的使用, Vue-cli是Vue的一個腳手架工具, <<BLOB>>, 2021-02-23 11:34:36, 2021-02-25 14:33:36, 0, 2, sky, 天藍, 123@qq.com, 2021-01-24 18:12:21, 2021-01-24 18:12:21, 0
<==        Row: 7, 2, sky, Vuex的用法, Vuex是vue用于共享變量的插件, <<BLOB>>, 2021-03-28 23:37:37, 2021-03-28 23:37:37, 0, 2, sky, 天藍, 123@qq.com, 2021-01-24 18:12:21, 2021-01-24 18:12:21, 0
<==      Total: 7
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@60bbb9ec]

2.傳條件

只傳:nickName:刀 

MyBatisPlus多表聯查怎么實現

結果

MyBatisPlus多表聯查怎么實現

后端結果

Creating a new SqlSession
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@30026aab] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@2127441980 wrapping com.mysql.cj.jdbc.ConnectionImpl@6a43d29c] will not be managed by Spring
==>  Preparing: SELECT COUNT(*) AS total FROM t_blog, t_user WHERE (t_user.nick_name LIKE ? AND t_blog.deleted_flag = ? AND t_user.deleted_flag = ? AND t_blog.user_id = t_user.id)
==> Parameters: %刀%(String), 0(Integer), 0(Integer)
<==    Columns: total
<==        Row: 5
<==      Total: 1
==>  Preparing: SELECT * FROM t_blog, t_user WHERE (t_user.nick_name LIKE ? AND t_blog.deleted_flag = ? AND t_user.deleted_flag = ? AND t_blog.user_id = t_user.id) LIMIT ?
==> Parameters: %刀%(String), 0(Integer), 0(Integer), 10(Long)
<==    Columns: id, user_id, user_name, title, description, content, create_time, update_time, deleted_flag, id, user_name, nick_name, email, create_time, update_time, deleted_flag
<==        Row: 1, 1, knife, Java中枚舉的用法, 本文介紹Java的枚舉類的使用, <<BLOB>>, 2021-01-23 11:33:36, 2021-01-23 11:33:36, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 2, 1, knife, Java中泛型的用法, 本文介紹Java的泛型的使用。, <<BLOB>>, 2021-01-28 23:37:37, 2021-01-28 23:37:37, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 3, 1, knife, Java的HashMap的原理, 本文介紹Java的HashMap的原理。, <<BLOB>>, 2021-05-28 09:06:06, 2021-05-28 09:06:06, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 4, 1, knife, Java中BigDecimal的用法, 本文介紹Java的BigDecimal的使用。, <<BLOB>>, 2021-06-24 20:36:54, 2021-06-24 20:36:54, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==        Row: 5, 1, knife, Java中反射的用法, 本文介紹Java的反射的使用。, <<BLOB>>, 2021-10-28 22:24:18, 2021-10-28 22:24:18, 0, 1, knife, 刀刃, abc@qq.com, 2021-01-23 09:33:36, 2021-01-23 09:33:36, 0
<==      Total: 5
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@30026aab]

關于“MyBatisPlus多表聯查怎么實現”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沿河| 九龙县| 怀集县| 阿巴嘎旗| 逊克县| 曲阳县| 扎囊县| 基隆市| 济源市| 石家庄市| 开江县| 绥中县| 华蓥市| 日土县| 东乡县| 玉溪市| 怀仁县| 朔州市| 沈阳市| 郴州市| 和平区| 宜兴市| 海宁市| 当涂县| 瓦房店市| 上虞市| 东城区| 南投市| 子长县| 松潘县| 儋州市| 肥城市| 建平县| 景洪市| 广东省| 阜平县| 尖扎县| 都昌县| 城固县| 清流县| 仁怀市|