我的编程空间,编程开发者的网络收藏夹
学习永远不晚

mybatis-plus使用问题小结

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

mybatis-plus使用问题小结

一、多表联合分页查询

1.多表联合查询结果集建议使用VO类,当然也可以使用resultMap

package com.cjhx.tzld.entity.vo;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.cjhx.tzld.entity.TContent;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data
@ApiModel(value="TContentVo", description="内容池多表联合数据对象")
public class TContentVo extends TContent {
    @ApiModelProperty(value = "编号")
    private Integer cid;
    @ApiModelProperty(value = "内容标题")
    private String title;
    @ApiModelProperty(value = "作者Id")
    @TableField("authorId")
    private Integer authorId;
    @ApiModelProperty(value = "时间")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") //返回时间类型
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") //接收时间类型
    private Date time;
    @ApiModelProperty(value = "内容")
    private String content;
    @ApiModelProperty(value = "作者姓名")
    private String author;
    @ApiModelProperty(value = "话题")
    private String topic;
    @ApiModelProperty(value = "模块编号")
    private int moduleNum;
    @ApiModelProperty(value = "模块")
    private String module;
    public TContentVo() {
    }
    public TContentVo(Integer cid, String title, Date time, String content, String author, String topic, int moduleNum) {
        this.cid = cid;
        this.title = title;
        this.time = time;
        this.content = content;
        this.author = author;
        this.topic = topic;
        this.moduleNum = moduleNum;
}

2.controller

package com.cjhx.tzld.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.cjhx.tzld.common.Result;
import com.cjhx.tzld.entity.TContent;
import com.cjhx.tzld.entity.TContentRelationFund;
import com.cjhx.tzld.entity.TTopicPk;
import com.cjhx.tzld.entity.vo.TContentVo;
import com.cjhx.tzld.service.TContentService;
import io.swagger.annotations.*;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;

@RestController
@RequestMapping("/content")
@Api("内容池模块")
public class ContentController {
    @Resource
    private TContentService contentService;
    @ApiImplicitParams({
            @ApiImplicitParam(name = "cid",value = "cid",dataType = "int",defaultValue = "0",required = false),
            @ApiImplicitParam(name = "title",value = "标题",dataType = "String",defaultValue = "",required = false),
            @ApiImplicitParam(name = "author",value = "作者姓名",dataType = "String",defaultValue = "",required = false),
            @ApiImplicitParam(name = "time",value = "发布时间",dataType = "Date",defaultValue = "",required = false),
            @ApiImplicitParam(name = "content",value = "内容",dataType = "String",defaultValue = "",required = false),
            @ApiImplicitParam(name = "topic",value = "话题",dataType = "String",defaultValue = "",required = false),
            @ApiImplicitParam(name = "moduleNum",value = "投放模块 1热点速递 2基会直达",dataType = "int",defaultValue = "",required = false),
            @ApiImplicitParam(name = "pageIndex",value = "页码",dataType = "int",defaultValue = "1",required = false),
            @ApiImplicitParam(name = "pageSize",value = "每页数量",dataType = "int",defaultValue = "10",required = false)
    })
    @ApiResponses({
            @ApiResponse(code = 200,message = "OK",response = TContent.class)
    @ApiOperation(value="分页获取内容接口(Web端)", notes="支持多条件查询",httpMethod = "GET")
    @RequestMapping(value = "/getContentPage",method = RequestMethod.GET)
    public Result getContentPage(@RequestParam(defaultValue = "0",required = false) int cid,
                                 @RequestParam(defaultValue = "",required = false) String title,
                                 @RequestParam(defaultValue = "",required = false) String author,
                                 @RequestParam(required = false) Date time,
                                 @RequestParam(defaultValue = "",required = false) String content,
                                 @RequestParam(defaultValue = "",required = false) String topic,
                                 @RequestParam(defaultValue = "0",required = false) int moduleNum,
                                 @RequestParam(defaultValue = "1",required = false) int pageIndex,
                                 @RequestParam(defaultValue = "10",required = false)  int pageSize) throws Exception{
        try {
            IPage<TContentVo> byPage = contentService.findByPage(new Page<TContentVo>(pageIndex, pageSize),new TContentVo(cid, title, time, content, author,  topic, moduleNum));
            return Result.success(byPage);
        }catch (Exception e){
            return Result.serviceFail(e.getMessage());
        }
    }
}

3.service

package com.cjhx.tzld.service.impl;

import com.baomidou.mybatisplus.core.conditions.Wrapper;
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.cjhx.tzld.common.PageUtil;
import com.cjhx.tzld.entity.TContent;
import com.cjhx.tzld.entity.vo.TContentVo;
import com.cjhx.tzld.mapper.TContentMapper;
import com.cjhx.tzld.service.TContentService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date;

@Service
public class TContentServiceImpl extends ServiceImpl<TContentMapper, TContent> implements TContentService {
    @Resource
    private TContentMapper tContentMapper;
    @Override
    public IPage<TContentVo> findByPage(Page<TContentVo> page, TContentVo contentVo) {
        return tContentMapper.findByPage(page,contentVo);
    }
}

4.mapper

package com.cjhx.tzld.mapper;

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.cjhx.tzld.entity.TContent;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cjhx.tzld.entity.vo.TContentVo;
import org.apache.ibatis.annotations.Param;

public interface TContentMapper extends BaseMapper<TContent> {
    IPage<TContentVo> findByPage(Page<TContentVo> page, @Param("contentVo") TContentVo contentVo);
}

5.mapper.xml,注意入参contentVo

<?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.cjhx.tzld.mapper.TContentMapper">

    <select id="findByPage" resultType="com.cjhx.tzld.entity.vo.TContentVo" parameterType="com.cjhx.tzld.entity.vo.TContentVo">
        SELECT t.`cid`,t.`authorId`,a.`name`,t.`title`,t.`time`,t.`content`,p.`topic`,h.`title` AS `module`
        FROM `t_content` t
        LEFT JOIN `t_author` a ON a.`aid`=t.`authorId`
        LEFT JOIN `t_topic_pk` p ON p.`cid` = t.`cid`
        LEFT JOIN `t_hot_express` h ON h.`cid` = t.`cid`
        UNION ALL
        SELECT t.`cid`,t.`authorId`,a.`name`,t.`title`,t.`time`,t.`content`,p.`topic`,f.`title` AS `module`
        LEFT JOIN `t_fund_point` f ON f.`cid` = t.`cid`
        <where>
            1=1
            <if test="contentVo.cid > 0"> and cid = #{contentVo.cid}</if>
            <if test="contentVo.title != null and contentVo.title != ''"> and t.title like concat('%', #{contentVo.title}, '%')</if>
            <if test="contentVo.author != null and contentVo.author != ''"> and a.author like concat('%', #{contentVo.author}, '%')</if>
            <if test="contentVo.time != null"> and t.time =${contentVo.time}</if>
            <if test="contentVo.content != null and contentVo.content != ''"> and t.content like concat('%', #{contentVo.content}, '%')</if>
            <if test="contentVo.topic != null and contentVo.topic != ''"> and p.topic like concat('%', #{contentVo.topic}, '%')</if>
            <if test="contentVo.moduleNum == 1"> and f.currentState = -1</if>
            <if test="contentVo.moduleNum == 2"> and h.currentState = -1</if>
        </where>
        order by time desc
    </select>
</mapper>

二、找不到mapper

首先排除@MapperScan("com.cjhx.tzld.mapper")已添加

1.首先配置文件扫描,mapper-locations:classpath:/com/cjhx/tzld/mapper/xml*.xml</include> </includes> </resource> </resources> </build>

到此这篇关于mybatis-plus使用问题汇总的文章就介绍到这了,更多相关mybatis-plus使用内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

mybatis-plus使用问题小结

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Springboot+Mybatis-plus不使用SQL语句进行多表添加操作及问题小结

这篇文章主要介绍了在Springboot+Mybatis-plus不使用SQL语句进行多表添加操作,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
2023-05-17

mybatis-plus使用问题的示例分析

这篇文章主要为大家展示了“mybatis-plus使用问题的示例分析”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“mybatis-plus使用问题的示例分析”这篇文章吧。一、多表联合分页查询1.
2023-06-29

Mybatis-Plus使用saveOrUpdate及问题解决方法

本文主要介绍了Mybatis-Plus使用saveOrUpdate及问题解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-01-11

Mybatis-plus中QueryWrapper的多种用法小结

本文主要介绍了Mybatis-plus中QueryWrapper的多种用法小结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-05-14

mongodb使用问题小结

mongodb安装完成后一直无法使用IP连接: 如果MongoDB服务未安装,则直接执行下面命令安装,无法自动创建的文件需要手动去创建。 mongod --dbpath=E:mongodbdatadb  --logpath=E:mongodbdatalogMo
mongodb使用问题小结
2021-10-28

使用mybatis-plus想要修改某字段为null问题

这篇文章主要介绍了使用mybatis-plus想要修改某字段为null问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-02-22

Mybatis中TypeHandler使用小结

MyBatisTypeHandler在Java类型和数据库类型之间转换。它提供了内置类型,如基本类型、字符串类型、日期类型等。开发者也可以创建自定义TypeHandler处理更复杂的数据类型。使用TypeHandler的好处包括简化数据处理、提高代码可读性、扩展性和性能。最佳实践包括优先使用内置类型、仅在必要时创建自定义类型、遵循TypeHandler接口规范,并充分测试其正确性。
Mybatis中TypeHandler使用小结
2024-04-02

mybatis-plus分页查询三种方法小结

本文主要介绍了mybatis-plus分页查询三种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-05-20

使用Mybatis-Plus时的SqlSessionFactory问题及处理是怎样的

这篇文章给大家介绍使用Mybatis-Plus时的SqlSessionFactory问题及处理是怎样的,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。使用Mybatis-Plus时的SqlSessionFactory问题
2023-06-22

React.memo和useMemo的使用问题小结

随着代码的增加,每次的状态改变,页面进行一次reRender,这将产生很多不必要的reRender不仅浪费性能,从而导致页面卡顿,这篇文章主要介绍了React.memo和useMemo的使用问题小结,需要的朋友可以参考下
2022-11-13

热门标签

编程热搜

编程资源站

目录