EasyCode使用指南—MybatisPlus模板

2024-01-27 15:12

本文主要是介绍EasyCode使用指南—MybatisPlus模板,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

  • 1、下载EasyCode插件
  • 2、配置EasyCode
    • 2.1、配置作者名称
    • 2.2、配置代码内容生成模板(模板内容见文末)
    • 2.3、连接数据库
    • 2.4、使用代码内容生成模板
  • 模板内容:
    • controller.java.vm
    • dto.java.vm
    • mapper.java.vm
    • mapper.xml.vm
    • pojo.java.vm
    • service.java.vm
    • serviceImpl.java.vm

1、下载EasyCode插件

在这里插入图片描述

2、配置EasyCode

2.1、配置作者名称

在这里插入图片描述

2.2、配置代码内容生成模板(模板内容见文末)

在这里插入图片描述

2.3、连接数据库

在这里插入图片描述

2.4、使用代码内容生成模板

在这里插入图片描述
在这里插入图片描述

模板内容:

controller.java.vm

##导入宏定义
$!{define.vm}##设置表后缀(宏定义)
#setTableSuffix("Controller")##保存文件(宏定义)
#save("/controller", "Controller.java")##包路径(宏定义)
#setPackageSuffix("controller")##定义服务名
#set($serviceName = $!tool.append($!tool.firstLowerCase($!tableInfo.name), "Service"))##定义实体对象名
#set($entityName = $!tool.firstLowerCase($!tableInfo.name))import $!{tableInfo.savePackageName}.domain.dto.$!{tableInfo.name}Dto;
import $!{tableInfo.savePackageName}.service.$!{tableInfo.name}Service;
import org.springframework.web.bind.annotation.*;import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;import java.util.List;
import lombok.RequiredArgsConstructor;##表注释(宏定义)
#tableComment("表控制层")
@RestController
@RequestMapping("$!tool.firstLowerCase($!tableInfo.name)")
@RequiredArgsConstructor
public class $!{tableName} extends BaseController{/*** 服务对象*/private final $!{tableInfo.name}Service $!{serviceName};/** * * @param $!{entityName}dto 请求参数封装* @author $!author * @description //TODO  分页查询所有数据* @date $!time.currTime()* @return 实例对象*/@PostMapping("/get$!{tableInfo.name}s")public TableDataInfo find$!{tableInfo.name}SelectList(@RequestBody $!{tableInfo.name}Dto $!{entityName}dto ) {startPage();return getDataTable(this.$!{serviceName}.find$!{tableInfo.name}SelectList($!{entityName}dto)); }/** * * @param $!{entityName}dto 请求参数封装* @author $!author  * @description //TODO  通过主键查询单条数据* @date $!time.currTime()* @return 单条数据*/@PostMapping("/get$!{tableInfo.name}ById")public AjaxResult select$!{tableInfo.name}ById(@RequestBody $!{tableInfo.name}Dto $!{entityName}dto) {return AjaxResult.success($!{serviceName}.select$!{tableInfo.name}ById($!{entityName}dto.getId())); }/** * * @param $!{entityName}dto 实体对象* @author $!author  * @description //TODO  新增数据* @date $!time.currTime()* @return 新增结果*/@PostMapping("/add$!{tableInfo.name}")public AjaxResult add$!{tableInfo.name}(@RequestBody $!{tableInfo.name}Dto $!{entityName}dto) {return toAjax(this.$!{serviceName}.insert($!{entityName}dto)); }/** * * @param $!{entityName}dto 实体对象* @author $!author  * @description //TODO  修改数据* @date $!time.currTime()* @return 修改结果*/@PostMapping("/update$!{tableInfo.name}")public AjaxResult update(@RequestBody $!{tableInfo.name}Dto $!{entityName}dto) {return toAjax(this.$!{serviceName}.update($!{entityName}dto)); }/** * * @param ids 主键集合* @author $!author  * @description //TODO  删除数据* @date $!time.currTime()* @return 删除结果*/@PostMapping("/delete$!{tableInfo.name}")public AjaxResult delete(@RequestParam("ids") List<Long> ids) {return toAjax(this.$!{serviceName}.deleteById(ids)); }
}

dto.java.vm

##引入宏定义
$!{define.vm}##使用宏定义设置回调(保存位置与文件后缀)
#save("/domain/dto", ".java")##使用宏定义设置包后缀
#setPackageSuffix("domain.dto")##使用全局变量实现默认包导入
$!{autoImport.vm}
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;import java.util.List;##使用宏定义实现类注释信息
#tableComment("实体类")
@Data
public class $!{tableInfo.name}Dto {#foreach($column in $tableInfo.fullColumn)#if(${column.comment})/*** ${column.comment}*/#endprivate $!{tool.getClsNameByFullName($column.type)} $!{column.name}; #endList<Long> ids;/*** 页*/private Integer pageNum;/*** 条*/private Integer pageSize;/*** 开始时间*/@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")private LocalDateTime startTime;/*** 结束时间*/@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")private LocalDateTime endTime;public Integer getPageNum() {return pageNum == null ? 1 : pageNum;}public Integer getPageSize() {return pageSize == null ? 10 : pageSize;}
}

mapper.java.vm

##导入宏定义
$!{define.vm}##设置表后缀(宏定义)
#setTableSuffix("Mapper")##保存文件(宏定义)
#save("/mapper", "Mapper.java")##包路径(宏定义)
#setPackageSuffix("mapper")import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import $!{tableInfo.savePackageName}.domain.pojo.$!tableInfo.name;
import org.apache.ibatis.annotations.Mapper;import java.util.List;##表注释(宏定义)
#tableComment("表数据库访问层")
@Mapper
public interface $!{tableName} extends BaseMapper<$!tableInfo.name> {/** * * @param $!tool.firstLowerCase($!{tableInfo.name}) 实例对象* @author $!author  * @description  分页查询数据* @date $!time.currTime()* @return 实例对象*/List<$!{tableInfo.name}> select$!{tableInfo.name}List($!{tableInfo.name} $!tool.firstLowerCase($!{tableInfo.name}));
}

mapper.xml.vm

##引入mybatis支持
$!{mybatisSupport.vm}##设置保存名称与保存位置
$!callback.setFileName($tool.append($!{tableInfo.name}, "Mapper.xml"))
$!callback.setSavePath($tool.append($modulePath, "/src/main/resources/mapper"))##拿到主键
#if(!$tableInfo.pkColumn.isEmpty())#set($pk = $tableInfo.pkColumn.get(0))
#end<?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="$!{tableInfo.savePackageName}.mapper.$!{tableInfo.name}Mapper"><resultMap type="$!{tableInfo.savePackageName}.domain.pojo.$!{tableInfo.name}" id="$!{tableInfo.name}Map">
#foreach($column in $tableInfo.fullColumn)<result property="$!column.name" column="$!column.obj.name" jdbcType="$!column.ext.jdbcType"/>
#end</resultMap><!--查询指定行数据--><select id="select$!{tableInfo.name}List" resultMap="$!{tableInfo.name}Map">select#allSqlColumn()from $!tableInfo.obj.name<where>
#foreach($column in $tableInfo.fullColumn)<if test="$!column.name != null#if($column.type.equals("java.lang.String")) and $!column.name != ''#end">and $!column.obj.name = #{$!column.name}</if>
#end</where></select>
</mapper>

pojo.java.vm

##引入宏定义
$!{define.vm}##使用宏定义设置回调(保存位置与文件后缀)
#save("/domain/pojo", ".java")##使用宏定义设置包后缀
#setPackageSuffix("domain.pojo")##使用全局变量实现默认包导入
$!{autoImport.vm}
import java.io.Serializable;
import lombok.Data;##使用宏定义实现类注释信息
#tableComment("实体类")
@Data
public class $!{tableInfo.name} {private static final long serialVersionUID = $!tool.serial();#foreach($column in $tableInfo.fullColumn)#if(${column.comment})/*** ${column.comment}*/#endprivate $!{tool.getClsNameByFullName($column.type)} $!{column.name};
#end}

service.java.vm

##导入宏定义
$!{define.vm}##设置表后缀(宏定义)
#setTableSuffix("Service")##保存文件(宏定义)
#save("/service", "Service.java")##包路径(宏定义)
#setPackageSuffix("service")import com.baomidou.mybatisplus.extension.service.IService;
import $!{tableInfo.savePackageName}.domain.dto.$!tableInfo.nameDto;
import $!{tableInfo.savePackageName}.domain.pojo.$!tableInfo.name;
import java.util.List;##表注释(宏定义)
#tableComment("表服务接口")
public interface $!{tableName} extends IService<$!tableInfo.name> {/** * * @param id 主键* @author $!author  * @description  通过ID查询单条数据* @date $!time.currTime()* @return 实例对象*/public $!{tableInfo.name} select$!{tableInfo.name}ById (Long id);/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description 分页查询数据* @date $!time.currTime()* @return 实例对象*/public List<$!{tableInfo.name}> find$!{tableInfo.name}SelectList ($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto);/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description  新增数据* @date $!time.currTime()* @return 实例对象*/public int insert($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto);/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description 修改数据并返回* @date $!time.currTime()* @return 实例对象*/public int update($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto);/**** @param ids 主键* @author $!author * @description  通过主键删除数据* @date $!time.currTime()* @return*/public int deleteById(List<Long> ids);
}

serviceImpl.java.vm

##导入宏定义
$!{define.vm}##设置表后缀(宏定义)
#setTableSuffix("ServiceImpl")##保存文件(宏定义)
#save("/service/impl", "ServiceImpl.java")##包路径(宏定义)
#setPackageSuffix("service.impl")import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;import $!{tableInfo.savePackageName}.mapper.$!{tableInfo.name}Mapper;
import $!{tableInfo.savePackageName}.domain.pojo.$!{tableInfo.name};
import $!{tableInfo.savePackageName}.domain.dto.$!{tableInfo.name}Dto;
import $!{tableInfo.savePackageName}.service.$!{tableInfo.name}Service;
import org.springframework.stereotype.Service;
import $!{tableInfo.savePackageName}.mapper.$!{tableInfo.name}Mapper;import java.util.List;
import lombok.RequiredArgsConstructor;import com.ruoyi.common.utils.bean.BeanUtils;##表注释(宏定义)
#tableComment("表服务实现类")
@Service("$!tool.firstLowerCase($tableInfo.name)Service")
@RequiredArgsConstructor
public class $!{tableName} extends ServiceImpl<$!{tableInfo.name}Dao, $!{tableInfo.name}> implements $!{tableInfo.name}Service {private final $!{tableInfo.name}Mapper $!tool.firstLowerCase($!{tableInfo.name})Mapper;/** * * @param  id 主键* @author $!author  * @description //TODO  通过ID查询单条数据* @date $!time.currTime()* @return 实例对象*/@Overridepublic $!{tableInfo.name} select$!{tableInfo.name}ById (Long id) {LambdaQueryWrapper<$!{tableInfo.name}> $!{tool.firstLowerCase($!{tableInfo.name})}lam =  new LambdaQueryWrapper<$!{tableInfo.name}>();$!{tool.firstLowerCase($!{tableInfo.name})}lam.eq($!{tableInfo.name} ::getId ,id);return baseMapper.selectOne($!{tool.firstLowerCase($!{tableInfo.name})}lam);}/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description //TODO  分页查询数据* @date $!time.currTime()* @return 实例对象*/@Overridepublic List<$!{tableInfo.name}> find$!{tableInfo.name}SelectList ($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto) {$!{tableInfo.name} $!tool.firstLowerCase($!{tableInfo.name}) = new $!{tableInfo.name}();BeanUtils.copyBeanProp($!tool.firstLowerCase($!{tableInfo.name}),$!tool.firstLowerCase($!{tableInfo.name})dto);return this.$!{tool.firstLowerCase($tableInfo.name)}Mapper.select$!{tableInfo.name}List($!{tool.firstLowerCase($tableInfo.name)});     }/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description //TODO  新增数据* @date $!time.currTime()* @return 实例对象*/@Overridepublic int insert($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto) {$!{tableInfo.name} $!tool.firstLowerCase($!{tableInfo.name}) = new $!{tableInfo.name}();BeanUtils.copyBeanProp($!tool.firstLowerCase($!{tableInfo.name}),$!tool.firstLowerCase($!{tableInfo.name})dto);return baseMapper.insert($!tool.firstLowerCase($!{tableInfo.name}));}/** * * @param $!tool.firstLowerCase($!{tableInfo.name})dto 实例对象* @author $!author  * @description //TODO  修改数据并返回* @date $!time.currTime()* @return 实例对象*/@Overridepublic int update($!{tableInfo.name}Dto $!tool.firstLowerCase($!{tableInfo.name})dto) {$!{tableInfo.name} $!tool.firstLowerCase($!{tableInfo.name}) = new $!{tableInfo.name}();BeanUtils.copyBeanProp($!tool.firstLowerCase($!{tableInfo.name}),$!tool.firstLowerCase($!{tableInfo.name})dto);return  baseMapper.updateById($!{tool.firstLowerCase($!{tableInfo.name})});}/**** @param idList 主键* @author $!author * @description //TODO    通过主键删除数据* @date $!time.currTime()* @return*/@Overridepublic void deleteById(List<Long> idList) {return baseMapper.deleteBatchIds(idList);}
}

这篇关于EasyCode使用指南—MybatisPlus模板的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/650625

相关文章

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

poj 2104 and hdu 2665 划分树模板入门题

题意: 给一个数组n(1e5)个数,给一个范围(fr, to, k),求这个范围中第k大的数。 解析: 划分树入门。 bing神的模板。 坑爹的地方是把-l 看成了-1........ 一直re。 代码: poj 2104: #include <iostream>#include <cstdio>#include <cstdlib>#include <al

最大流、 最小费用最大流终极版模板

最大流  const int inf = 1000000000 ;const int maxn = 20000 , maxm = 500000 ;struct Edge{int v , f ,next ;Edge(){}Edge(int _v , int _f , int _next):v(_v) ,f(_f),next(_next){}};int sourse , mee

C++语法知识点合集:11.模板

文章目录 一、非类型模板参数1.非类型模板参数的基本形式2.指针作为非类型模板参数3.引用作为非类型模板参数4.非类型模板参数的限制和陷阱:5.几个问题 二、模板的特化1.概念2.函数模板特化3.类模板特化(1)全特化(2)偏特化(3)类模板特化应用示例 三、模板分离编译1.概念2.模板的分离编译 模版总结 一、非类型模板参数 模板参数分类类型形参与非类型形参 非类型模板

Smarty模板引擎工作机制(一)

深入浅出Smarty模板引擎工作机制,我们将对比使用smarty模板引擎和没使用smarty模板引擎的两种开发方式的区别,并动手开发一个自己的模板引擎,以便加深对smarty模板引擎工作机制的理解。 在没有使用Smarty模板引擎的情况下,我们都是将PHP程序和网页模板合在一起编辑的,好比下面的源代码: <?php$title="深处浅出之Smarty模板引擎工作机制";$content=

Smarty模板执行原理

为了实现程序的业务逻辑和内容表现页面的分离从而提高开发速度,php 引入了模板引擎的概念,php 模板引擎里面最流行的可以说是smarty了,smarty因其功能强大而且速度快而被广大php web开发者所认可。本文将记录一下smarty模板引擎的工作执行原理,算是加深一下理解。 其实所有的模板引擎的工作原理是差不多的,无非就是在php程序里面用正则匹配将模板里面的标签替换为php代码从而将两者