服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - 已有的springcloud+mybatis项目升级为mybatis-plus的方法

已有的springcloud+mybatis项目升级为mybatis-plus的方法

2021-08-23 12:06Call me 男神 Java教程

这篇文章主要介绍了已有的springcloud+mybatis项目升级为mybatis-plus,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

已有的springcloud+mybatis项目升级为mybatis-plus

项目模块目录

已有的springcloud+mybatis项目升级为mybatis-plus的方法

已有的springcloud+mybatis项目升级为mybatis-plus的方法

将mybatis依赖替换为mybatis-plus

已有的springcloud+mybatis项目升级为mybatis-plus的方法

修改配置文件

已有的springcloud+mybatis项目升级为mybatis-plus的方法

实体类如果与数据库不同名需要加上@TableName

  1. @Data
  2. @TableName("project_base")
  3. public class ProjectBase {
  4. @TableId(value = "id", type = IdType.UUID)//id看具体项目要求如果是后台生成则不需要type属性,如果不是后台生成不管是自增还是唯一键还是填入都需type属性
  5. private String id;
  6. private String prjid;
  7.  
  8. private String ccode;
  9.  
  10. private String cname;
  11.  
  12. private String orgbuild;
  13.  
  14. @TableField(fill = FieldFill.INSERT_UPDATE)、//自动填充时间需要一个继承MetaObjectHandler的类,下一个
  15. private Date createtime;
  16. @TableField(fill = FieldFill.UPDATE)
  17. private Date updatetime;
  18. @TableLogic//需要配置文件开启逻辑删除
  19. private Boolean del;
  20.  
  21. @Version//版本字段数据库不是一定为version只需要在版本字段上加上注解就可以
  22. private Integer version;
  1. package com.itpm.server.Handler;
  2.  
  3. import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.apache.ibatis.reflection.MetaObject;
  6. import org.springframework.stereotype.Component;
  7.  
  8. import java.util.Date;
  9.  
  10. @Component
  11. @Slf4j
  12. public class MyMateHandler implements MetaObjectHandler {
  13. @Override
  14. public void insertFill(MetaObject metaObject) {
  15. this.setFieldValByName("createtime",new Date(),metaObject);
  16. this.setFieldValByName("updatetime",new Date(),metaObject);
  17. }
  18.  
  19. @Override
  20. public void updateFill(MetaObject metaObject) {
  21. this.setFieldValByName("updatatime",new Date(),metaObject);
  22. }
  23. }

继承BaseMapper

原有接口可以不变,也可以把同名的接口名改了,比如plus的insert和原有的insert同名

  1. package com.itpm.server.mapper.project;
  2.  
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.itpm.server.domain.project.ProjectBase;
  5. import com.itpm.server.domain.project.ProjectBaseExample;
  6. import com.itpm.server.dto.project.ProjectBaseDto;
  7. import org.apache.ibatis.annotations.Param;
  8.  
  9. import java.util.List;
  10. import java.util.Map;
  11.  
  12. public interface ProjectBaseMapper extends BaseMapper<ProjectBase> {
  13. long countByExample(ProjectBaseExample example);
  14.  
  15. int deleteByExample(ProjectBaseExample example);
  16.  
  17. int deleteByPrimaryKey(String id);
  18.  
  19. int insertlist(List<ProjectBase> list);
  20.  
  21. int insert(ProjectBase record);
  22.  
  23. int insertSelective(ProjectBase record);
  24.  
  25. List<ProjectBaseDto> selectByExample(ProjectBaseExample example);
  26.  
  27. ProjectBaseDto selectByPrimaryKey(String id);
  28.  
  29. int updateByExampleSelective(@Param("record") ProjectBase record, @Param("example") ProjectBaseExample example);
  30.  
  31. int updateByExample(@Param("record") ProjectBase record, @Param("example") ProjectBaseExample example);
  32.  
  33. int updateByPrimaryKeySelective(ProjectBase record);
  34.  
  35. int updateByPrimaryKey(ProjectBase record);
  36.  
  37. ProjectBaseDto selectByPrjid(Map map);
  38.  
  39. List<ProjectBaseDto> selectByprojectoverview(String prjid);
  40.  
  41. List<ProjectBaseDto> selectProjectByExample(ProjectBaseExample example);
  42.  
  43. List<ProjectBaseDto> selectProjectByparams(@Param("record") Map record);
  44.  
  45. }

Service层

service层可以继承IService。如果想都自己写不继承也可以

代码生成器

与之前的mybatis代码生成器不冲突,可以选择也可以一起用
我的要生成在公共模块server下

  1. <dependency>
  2. <groupId>com.baomidou</groupId>
  3. <artifactId>mybatis-plus-generator</artifactId>
  4. <version>3.0.6</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.freemarker</groupId>
  8. <artifactId>freemarker</artifactId>
  9. <version>2.3.29</version>
  10. </dependency>

```默认的是freemaker模板可以用其他的,需要导入其他依赖并且代码设置如下,当然可以做成一个util方便,mapper.xml默认生成在mapper层下xml包下,如果需要在resouce下生成需要自定义输出位置

  1. package com.itpm.generator.server;
  2.  
  3. import com.baomidou.mybatisplus.annotation.DbType;
  4. import com.baomidou.mybatisplus.annotation.FieldFill;
  5. import com.baomidou.mybatisplus.annotation.IdType;
  6. import com.baomidou.mybatisplus.core.toolkit.StringPool;
  7. import com.baomidou.mybatisplus.generator.AutoGenerator;
  8. import com.baomidou.mybatisplus.generator.InjectionConfig;
  9. import com.baomidou.mybatisplus.generator.config.*;
  10. import com.baomidou.mybatisplus.generator.config.po.TableFill;
  11. import com.baomidou.mybatisplus.generator.config.po.TableInfo;
  12. import com.baomidou.mybatisplus.generator.config.rules.DateType;
  13. import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
  14. import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
  15.  
  16. import java.io.File;
  17. import java.util.ArrayList;
  18. import java.util.List;
  19.  
  20. public class ProjectKing {
  21. public static void main(String[] args) {
  22. //需要构建一个代码自动生成器对象
  23. AutoGenerator autoGenerator = new AutoGenerator();
  24. //配置策略
  25. //1.全局配置
  26. GlobalConfig globalConfig = new GlobalConfig();
  27. File file = new File("server");
  28. String path = file.getAbsolutePath();
  29. // String property = System.getProperty("user.dir");
  30. globalConfig.setOutputDir(path + "/src/main/java");
  31. globalConfig.setAuthor("蒋磊");
  32. globalConfig.setOpen(false);
  33. globalConfig.setBaseResultMap(true);
  34. globalConfig.setBaseColumnList(true);
  35. globalConfig.setFileOverride(false);//是否覆盖
  36. globalConfig.setServiceName("%sService");//去service的i前缀
  37. globalConfig.setIdType(IdType.UUID);
  38. globalConfig.setDateType(DateType.ONLY_DATE);
  39. globalConfig.setSwagger2(true);
  40. autoGenerator.setGlobalConfig(globalConfig);
  41. //2设置数据源
  42. DataSourceConfig dataSourceConfig = new DataSourceConfig();
  43. dataSourceConfig.setUrl("jdbc:mysql://itpm.itycu.com/itpm?characterEncoding=UTF8&autoReconnect=true&&allowMultiQueries=true");
  44. dataSourceConfig.setDriverName("com.mysql.jdbc.Driver");
  45. dataSourceConfig.setUsername("root");
  46. dataSourceConfig.setPassword("Itycu.8594");
  47. dataSourceConfig.setDbType(DbType.MYSQL);
  48. autoGenerator.setDataSource(dataSourceConfig);
  49. //包的配置
  50. PackageConfig packageConfig = new PackageConfig();
  51. packageConfig.setModuleName("server");
  52. String a="project";
  53. packageConfig.setParent("com.itpm");
  54. // packageConfig.setEntity("entity");
  55. // packageConfig.setMapper("mapper");
  56. // packageConfig.setService("service");
  57. // packageConfig.setController("controller");
  58. packageConfig.setEntity("domain."+a);
  59. packageConfig.setMapper("mapper."+a);
  60. packageConfig.setService("service."+a);
  61. packageConfig.setServiceImpl("service."+a+".impl");
  62. packageConfig.setController("controller."+a);
  63. // 自定义配置
  64. InjectionConfig cfg = new InjectionConfig() {
  65. @Override
  66. public void initMap() {
  67. // to do nothing
  68. }
  69. };
  70. // 模板引擎 freemarker
  71. String templatePath = "/templates/mapper.xml.ftl";
  72. // 模板引擎 velocity
  73. // String templatePath = "/templates/mapper.xml.vm";
  74.  
  75. // 自定义输出配置
  76. List<FileOutConfig> focList = new ArrayList<>();
  77. // 自定义配置会被优先输出
  78. focList.add(new FileOutConfig(templatePath) {
  79. @Override
  80. public String outputFile(TableInfo tableInfo) {
  81. // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!!
  82. return path + "/src/main/resources/mapper/" + a
  83. + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
  84. }
  85. });
  86. /*
  87. cfg.setFileCreate(new IFileCreate() {
  88. @Override
  89. public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
  90. // 判断自定义文件夹是否需要创建
  91. checkDir("调用默认方法创建的目录,自定义目录用");
  92. if (fileType == FileType.MAPPER) {
  93. // 已经生成 mapper 文件判断存在,不想重新生成返回 false
  94. return !new File(filePath).exists();
  95. }
  96. // 允许生成模板文件
  97. return true;
  98. }
  99. });
  100. */
  101. cfg.setFileOutConfigList(focList);
  102. autoGenerator.setCfg(cfg);
  103. templateConfig.setXml(null);
  104. autoGenerator.setTemplate(templateConfig);
  105.  
  106. autoGenerator.setPackageInfo(packageConfig);
  107. //4策略配置
  108. StrategyConfig strategyConfig = new StrategyConfig();
  109. strategyConfig.setNaming(NamingStrategy.underline_to_camel);
  110. strategyConfig.setColumnNaming(NamingStrategy.underline_to_camel);
  111. ArrayList<String> objects = new ArrayList<>();
  112. // objects.add("etest");
  113. objects.add("rtest");
  114. strategyConfig.setInclude(objects.toArray(new String[objects.size()]));//设置要映射的表名
  115.  
  116. // strategyConfig.setSuperEntityClass("");
  117. strategyConfig.setEntityLombokModel(true);//自动lombok
  118. strategyConfig.setRestControllerStyle(true);
  119. strategyConfig.setLogicDeleteFieldName("deletedd");//逻辑删除字段
  120. //自动填充配置
  121. TableFill createtime = new TableFill("create_time", FieldFill.INSERT);
  122. TableFill updatetime = new TableFill("update_time", FieldFill.UPDATE);
  123. ArrayList<TableFill> tableFills = new ArrayList<>();
  124. strategyConfig.setTableFillList(tableFills);
  125. //乐观锁
  126. strategyConfig.setVersionFieldName("berv");
  127. strategyConfig.setRestControllerStyle(true);
  128. strategyConfig.setControllerMappingHyphenStyle(true);//localhost:8080/hello_id_2
  129. autoGenerator.setStrategy(strategyConfig);
  130. autoGenerator.setTemplateEngine(new FreemarkerTemplateEngine());
  131. //执行
  132. autoGenerator.execute();
  133. }
  134. }

到此这篇关于已有的springcloud+mybatis项目升级为mybatis-plus的方法的文章就介绍到这了,更多相关springcloud+mybatis项目升级为mybatis-plus内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_45652244/article/details/114629409

延伸 · 阅读

精彩推荐
  • Java教程Eclipse导入项目报错问题解决方案

    Eclipse导入项目报错问题解决方案

    这篇文章主要介绍了Eclipse导入项目报错问题解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以...

    yaominghui4992020-07-30
  • Java教程Java文件操作之按行读取文件和遍历目录的方法

    Java文件操作之按行读取文件和遍历目录的方法

    这篇文章主要介绍了Java文件操作之按行读取文件和递归遍历目录的方法,遍历目录文中分别举了递归和非递归的例子,需要的朋友可以参考下 ...

    mafuli0072302020-04-09
  • Java教程详谈java集合框架

    详谈java集合框架

    这篇文章主要介绍了详谈java集合框架 ,需要的朋友可以参考下 ...

    mdxy-dxy4972019-12-17
  • Java教程拳皇(Java简单的小程序)代码实例

    拳皇(Java简单的小程序)代码实例

    这篇文章主要介绍了拳皇Java简单小程序,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编...

    K.D..4032021-07-26
  • Java教程深入理解Java反射

    深入理解Java反射

    在理解反射原理之前先要搞清类型信息。接下来通过本文给大家介绍java反射的深入理解,非常不错,具有参考借鉴价值,感兴趣的朋友一起看下吧 ...

    luoxn283812020-05-31
  • Java教程java实现希尔排序算法

    java实现希尔排序算法

    希尔排序(Shell Sort)是插入排序的一种,是针对直接插入排序算法的改进,是将整个无序列分割成若干小的子序列分别进行插入排序,希尔排序并不稳定。该...

    hebedich3332019-12-15
  • Java教程详解java 中Spring jsonp 跨域请求的实例

    详解java 中Spring jsonp 跨域请求的实例

    这篇文章主要介绍了详解java 中Spring jsonp 跨域请求的实例的相关资料,jsonp 可用于解决主流浏览器的跨域数据访问的问题,需要的朋友可以参考下...

    hpgary1482020-12-16
  • Java教程把Java程序转换成exe,可直接运行的实现

    把Java程序转换成exe,可直接运行的实现

    这篇文章主要介绍了把Java程序转换成exe,可直接运行的实现,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    棒棒的胖胖3632020-10-01