SpringBoot+MyBatis实现一对多查询

本文介绍了如何使用SpringBoot结合MyBatis实现一对多查询。首先通过Navicat创建MySQL的info和info_content表,接着在SpringBoot项目中编写Info和InfoContent实体类,以及对应的Mapper和XML文件,实现一对多查询接口。最后,通过Vue调用该接口,展示查询结果。文章提到了查询结果的优化需求。
摘要由CSDN通过智能技术生成

使用Navicat创建MySQL表

info表(包括id和title, id为主键且自动递增); info_content表(包括id, info_id, content, id为主键且自动递增)。info表为主表,info表中的一条数据对应info_content表中的多条数据:
在这里插入图片描述
在这里插入图片描述

Springboot编写接口

编写实体类:
编写 Info 实体类(entity):

package com.example.demo.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.util.List;

@TableName("user")
@Data
public class Info {
   
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String title;
    //表示以下数据并不是在数据库中存在
    @TableField(exist = false)
    private List<InfoContent> contentList;
}

编写 InfoContent 实体类(entity):

package com.example.demo.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

@TableName("info_content")
@Data
public class InfoContent {
   
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Integer info_id;
    private String content;
}

Info 中的 contentList 就包含一个或多个 InfoContent 实体。

编写xml文件:
Info.xml 用于定义 SQL查询语句 及 返回结果:

<!DOCTYPE mapper PUBLIC "-//mybatis.org// DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.demo.mapper.InfoMapper">

    <resultMap id="infoMap" type="com.example.demo.entity.Info">
        <result property="id" column="id"/>
        <result property="title" column
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值