Generator.kt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package com.gxzc.zen
  2. import com.baomidou.mybatisplus.generator.AutoGenerator
  3. import com.baomidou.mybatisplus.generator.InjectionConfig
  4. import com.baomidou.mybatisplus.generator.config.*
  5. import com.baomidou.mybatisplus.generator.config.converts.MySqlTypeConvert
  6. import com.baomidou.mybatisplus.generator.config.po.TableInfo
  7. import com.baomidou.mybatisplus.generator.config.rules.DbColumnType
  8. import com.baomidou.mybatisplus.generator.config.rules.DbType
  9. import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy
  10. import java.io.File
  11. /**
  12. * 代码生成器
  13. * @author NorthLan
  14. * @date 2018/1/24
  15. * @url https://noahlan.me
  16. */
  17. fun main(args: Array<String>) {
  18. generate(true, "NorthLan", "bus", DataSourceConfig().also {
  19. it.dbType = DbType.MYSQL
  20. it.typeConvert = object : MySqlTypeConvert() {
  21. override fun processTypeConvert(fieldType: String?): DbColumnType {
  22. return super.processTypeConvert(fieldType)
  23. }
  24. }
  25. it.driverName = "com.mysql.jdbc.Driver"
  26. it.username = "archives"
  27. it.password = "archives"
  28. it.url = "jdbc:mysql://192.168.1.124:3307/archives_mgr?characterEncoding=utf8"
  29. // it.url = "jdbc:mysql://127.0.0.1:3306/archives_mgr?characterEncoding=utf8"
  30. // it.username = "root"
  31. // it.password = "root"
  32. })
  33. }
  34. /**
  35. * 代码生成器具体执行方法<br>
  36. * @param isKotlin 是否生成kotlin代码
  37. * @param author 作者
  38. * @param pkgType 包类别 (sys/bus)
  39. * @param dataSourceConfig 数据源配置
  40. */
  41. fun generate(isKotlin: Boolean, author: String, pkgType: String, dataSourceConfig: DataSourceConfig) {
  42. val mpg = AutoGenerator()
  43. val path = File("zen-api").absolutePath
  44. // 全局配置
  45. mpg.globalConfig = GlobalConfig().also {
  46. it.outputDir = if (isKotlin) {
  47. "$path/src/main/kotlin"
  48. } else {
  49. "$path/src/main/java"
  50. }
  51. it.isFileOverride = true
  52. it.isActiveRecord = false
  53. it.isEnableCache = false
  54. it.isOpen = false
  55. it.author = author
  56. it.isKotlin = isKotlin
  57. it.isBaseResultMap = true
  58. it.isBaseColumnList = false
  59. it.mapperName = "%sMapper"
  60. it.xmlName = "%sMapper"
  61. it.serviceName = "I%sService"
  62. it.serviceImplName = "%sServiceImpl"
  63. }
  64. // 数据源
  65. mpg.dataSource = dataSourceConfig
  66. // 策略配置
  67. mpg.strategy = StrategyConfig().also {
  68. it.setDbColumnUnderline(true)
  69. it.isCapitalMode = false
  70. it.naming = NamingStrategy.underline_to_camel
  71. // setTablePrefix()
  72. it.superEntityClass = "com.gxzc.zen.common.base.BaseModel"
  73. it.setSuperEntityColumns("id", "create_by", "create_time", "update_by", "update_time", "remark", "enable")
  74. it.superMapperClass = "com.gxzc.zen.common.base.BaseMapper"
  75. it.superServiceClass = "com.gxzc.zen.common.base.BaseService"
  76. it.superServiceImplClass = "com.baomidou.mybatisplus.service.impl.ServiceImpl"
  77. // superControllerClass = ""
  78. // setInclude("user")
  79. it.isEntityBooleanColumnRemoveIsPrefix = true
  80. it.logicDeleteFieldName = "enable"
  81. // setExclude("")
  82. }
  83. // 包配置
  84. mpg.packageInfo = PackageConfig().also {
  85. it.parent = "com.gxzc.zen.api.$pkgType"
  86. it.entity = "model"
  87. }
  88. val cfg = object : InjectionConfig() {
  89. override fun initMap() {
  90. }
  91. }.also {
  92. it.fileOutConfigList = ArrayList<FileOutConfig>().also {
  93. it.add(object : FileOutConfig("/templates/mapper.xml.vm") {
  94. override fun outputFile(tableInfo: TableInfo?): String {
  95. return "$path/src/main/resources/mapping/$pkgType/${tableInfo?.mapperName}.xml"
  96. }
  97. })
  98. }
  99. }
  100. mpg.cfg = cfg
  101. mpg.template = TemplateConfig().also {
  102. it.controller = null // 不生成controller
  103. it.xml = null
  104. }
  105. mpg.execute()
  106. }