Intellij IDEA 通过数据库表生成带注解的实体类Generate MyPOJOs.groovy脚本的编写
//两段代码第一个是mybatis-plus的 第二个spring-jpa的,jpa的是我复制别人的,是本体,mybatis的是我改的
//idea连接数据方法见 https://www.cnblogs.com/yahe/p/17143089.html
//脚本使用方式参见 https://www.qyyshop.com/info/989669.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | import com.intellij.database.model.DasTable import com.intellij.database.model.ObjectKind import com.intellij.database.util.Case import com.intellij.database.util.DasUtil import java.io.* import java.text.SimpleDateFormat packageName = "" typeMapping = [ (~/(?i)tinyint|smallint|mediumint/) : "Integer" , (~/(?i) int /) : "Long" , (~/(?i)bool|bit/) : "Boolean" , (~/(?i) float | double |decimal|real/) : "Double" , (~/(?i)datetime|timestamp|date|time/) : "Date" , (~/(?i)blob|binary|bfile|clob|raw|image/): "InputStream" , (~/(?i)/) : "String" ] FILES.chooseDirectoryAndSave( "Choose directory" , "Choose where to store generated files" ) { dir -> SELECTION.filter { it instanceof DasTable && it.getKind() == ObjectKind.TABLE }. each { generate(it, dir) } } def generate(table, dir) { def className = javaName(table.getName(), true) def fields = calcFields(table) packageName = getPackageName(dir) PrintWriter printWriter = new PrintWriter( new OutputStreamWriter( new FileOutputStream( new File(dir, className + ".java" )), "UTF-8" )) printWriter. withPrintWriter { out -> generate(out, className, fields, table) } } // 获取包所在文件夹路径 def getPackageName(dir) { return dir.toString().replaceAll( "\\\\" , "." ).replaceAll( "/" , "." ).replaceAll( "^.*src(\\.main\\.java\\.)?" , "" ) + ";" } def generate(out, className, fields, table) { out. println "package $packageName" out. println "" out. println "import com.baomidou.mybatisplus.annotation.TableName;" out. println "import lombok.Data;" out. println "import java.io.Serializable;" Set types = new HashSet() fields. each () { types.add(it.type) } if (types. contains ( "Date" )) { out. println "import java.util.Date;" } if (types. contains ( "InputStream" )) { out. println "import java.io.InputStream;" } out. println "" out. println "/**\n" + " * @Description \n" + " * @Author tian\n" + " * @Date " + new SimpleDateFormat( "yyyy-MM-dd" ).format( new Date()) + " \n" + " */" out. println "" out. println "@Data" out. println "@TableName ( \"" + table.getName() + "\" )" out. println "public class $className implements Serializable {" out. println "" out. println genSerialID() fields. each () { out. println "" // 输出注释 if (isNotEmpty(it.commoent)) { out. println "\t// ${it.commoent.toString()}" } if (it.annos != "" ) out. println " ${it.annos.replace(" [@Id] ", " ")}" // 输出成员变量 out. println "\tprivate ${it.type} ${it.name};" } // 输出get/set方法 // fields.each() { // out.println "" // out.println "\tpublic ${it.type} get${it.name.capitalize()}() {" // out.println "\t\treturn this.${it.name};" // out.println "\t}" // out.println "" // // out.println "\tpublic void set${it.name.capitalize()}(${it.type} ${it.name}) {" // out.println "\t\tthis.${it.name} = ${it.name};" // out.println "\t}" // } out. println "" out. println "}" } def calcFields(table) { DasUtil.getColumns(table).reduce([]) { fields, col -> def spec = Case.LOWER.apply(col.getDataType().getSpecification()) def typeStr = typeMapping. find { p, t -> p.matcher(spec). find () }.value def comm = [ colName : col.getName(), name : javaName(col.getName(), false), type : typeStr, commoent: col.getComment() ,annos : "" ] if ( "id" .equals(Case.LOWER.apply(col.getName()))) comm.annos += [ "@Id" ] fields += [comm] } } // 处理类名(这里是因为我的表都是以t_命名的,所以需要处理去掉生成类名时的开头的T, // 如果你不需要那么请查找用到了 javaClassName这个方法的地方修改为 javaName 即可) def javaClassName(str, capitalize) { def s = com.intellij.psi.codeStyle.NameUtil.splitNameIntoWords(str) . collect { Case.LOWER.apply(it).capitalize() } . join ( "" ) .replaceAll(/[^\p{javaJavaIdentifierPart}[_]]/, "_" ) // 去除开头的T http://developer.51cto.com/art/200906/129168.htm s = s[ 1 ..s. size () - 1 ] capitalize || s.length() == 1 ? s : Case.LOWER.apply(s[ 0 ]) + s[ 1 ..- 1 ] } def javaName(str, capitalize) { def s = com.intellij.psi.codeStyle.NameUtil.splitNameIntoWords(str) . collect { Case.LOWER.apply(it).capitalize() } . join ( "" ) .replaceAll(/[^\p{javaJavaIdentifierPart}[_]]/, "_" ) capitalize || s.length() == 1 ? s : Case.LOWER.apply(s[ 0 ]) + s[ 1 ..- 1 ] } def isNotEmpty(content) { return content != null && content.toString().trim().length() > 0 } static String changeStyle(String str, boolean toCamel) { if (!str || str. size () <= 1 ) return str if (toCamel) { String r = str.toLowerCase().split( '_' ). collect { cc -> Case.LOWER.apply(cc).capitalize() }. join ( '' ) return r[ 0 ].toLowerCase() + r[ 1 ..- 1 ] } else { str = str[ 0 ].toLowerCase() + str[ 1 ..- 1 ] return str. collect { cc -> (( char ) cc).isUpperCase() ? '_' + cc.toLowerCase() : cc }. join ( '' ) } } static String genSerialID() { return "\tprivate static final long serialVersionUID = " + Math.abs( new Random().nextLong()) + "L;" } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | import com.intellij.database.model.DasTable import com.intellij.database.model.ObjectKind import com.intellij.database.util.Case import com.intellij.database.util.DasUtil import java.io.* import java.text.SimpleDateFormat /* * Available context bindings: * SELECTION Iterable<DasObject> * PROJECT project * FILES files helper */ packageName = "" typeMapping = [ (~/(?i)tinyint|smallint|mediumint/) : "Integer" , (~/(?i) int /) : "Long" , (~/(?i)bool|bit/) : "Boolean" , (~/(?i) float | double |decimal|real/) : "Double" , (~/(?i)datetime|timestamp|date|time/) : "Date" , (~/(?i)blob|binary|bfile|clob|raw|image/): "InputStream" , (~/(?i)/) : "String" ] FILES.chooseDirectoryAndSave( "Choose directory" , "Choose where to store generated files" ) { dir -> SELECTION.filter { it instanceof DasTable && it.getKind() == ObjectKind.TABLE }. each { generate(it, dir) } } def generate(table, dir) { def className = javaClassName(table.getName(), true) def fields = calcFields(table) packageName = getPackageName(dir) PrintWriter printWriter = new PrintWriter( new OutputStreamWriter( new FileOutputStream( new File(dir, className + ".java" )), "UTF-8" )) printWriter. withPrintWriter {out -> generate(out, className, fields,table)} // new File(dir, className + ".java").withPrintWriter { out -> generate(out, className, fields,table) } } // 获取包所在文件夹路径 def getPackageName(dir) { return dir.toString().replaceAll( "\\\\" , "." ).replaceAll( "/" , "." ).replaceAll( "^.*src(\\.main\\.java\\.)?" , "" ) + ";" } def generate(out, className, fields,table) { out. println "package $packageName" out. println "" out. println "import javax.persistence.Column;" out. println "import javax.persistence.Entity;" out. println "import javax.persistence.Table;" out. println "import java.io.Serializable;" out. println "import lombok.Getter;" out. println "import lombok.Setter;" out. println "import lombok.ToString;" Set types = new HashSet() fields. each () { types.add(it.type) } if (types. contains ( "Date" )) { out. println "import java.util.Date;" } if (types. contains ( "InputStream" )) { out. println "import java.io.InputStream;" } out. println "" out. println "/**\n" + " * @Description \n" + " * @Author Hunter\n" + " * @Date " + new SimpleDateFormat( "yyyy-MM-dd" ).format( new Date()) + " \n" + " */" out. println "" out. println "@Setter" out. println "@Getter" out. println "@ToString" out. println "@Entity" out. println "@Table ( name =\"" +table.getName() + "\" )" out. println "public class $className implements Serializable {" out. println "" out. println genSerialID() fields. each () { out. println "" // 输出注释 if (isNotEmpty(it.commoent)) { out. println "\t/**" out. println "\t * ${it.commoent.toString()}" out. println "\t */" } if (it.annos != "" ) out. println " ${it.annos.replace(" [@Id] ", " ")}" // 输出成员变量 out. println "\tprivate ${it.type} ${it.name};" } // 输出get/set方法 // fields.each() { // out.println "" // out.println "\tpublic ${it.type} get${it.name.capitalize()}() {" // out.println "\t\treturn this.${it.name};" // out.println "\t}" // out.println "" // // out.println "\tpublic void set${it.name.capitalize()}(${it.type} ${it.name}) {" // out.println "\t\tthis.${it.name} = ${it.name};" // out.println "\t}" // } out. println "" out. println "}" } def calcFields(table) { DasUtil.getColumns(table).reduce([]) { fields, col -> def spec = Case.LOWER.apply(col.getDataType().getSpecification()) def typeStr = typeMapping. find { p, t -> p.matcher(spec). find () }.value def comm =[ colName : col.getName(), name : javaName(col.getName(), false), type : typeStr, commoent: col.getComment(), annos: "\t@Column(name = \"" +col.getName()+ "\" )" ] if ( "id" .equals(Case.LOWER.apply(col.getName()))) comm.annos +=[ "@Id" ] fields += [comm] } } // 处理类名(这里是因为我的表都是以t_命名的,所以需要处理去掉生成类名时的开头的T, // 如果你不需要那么请查找用到了 javaClassName这个方法的地方修改为 javaName 即可) def javaClassName(str, capitalize) { def s = com.intellij.psi.codeStyle.NameUtil.splitNameIntoWords(str) . collect { Case.LOWER.apply(it).capitalize() } . join ( "" ) .replaceAll(/[^\p{javaJavaIdentifierPart}[_]]/, "_" ) // 去除开头的T http://developer.51cto.com/art/200906/129168.htm s = s[ 1 ..s. size () - 1 ] capitalize || s.length() == 1 ? s : Case.LOWER.apply(s[ 0 ]) + s[ 1 ..- 1 ] } def javaName(str, capitalize) { // def s = str.split(/(?<=[^\p{IsLetter}])/).collect { Case.LOWER.apply(it).capitalize() } // .join("").replaceAll(/[^\p{javaJavaIdentifierPart}]/, "_") // capitalize || s.length() == 1? s : Case.LOWER.apply(s[0]) + s[1..-1] def s = com.intellij.psi.codeStyle.NameUtil.splitNameIntoWords(str) . collect { Case.LOWER.apply(it).capitalize() } . join ( "" ) .replaceAll(/[^\p{javaJavaIdentifierPart}[_]]/, "_" ) capitalize || s.length() == 1 ? s : Case.LOWER.apply(s[ 0 ]) + s[ 1 ..- 1 ] } def isNotEmpty(content) { return content != null && content.toString().trim().length() > 0 } static String changeStyle(String str, boolean toCamel){ if (!str || str. size () <= 1 ) return str if (toCamel){ String r = str.toLowerCase().split( '_' ). collect {cc -> Case.LOWER.apply(cc).capitalize()}. join ( '' ) return r[ 0 ].toLowerCase() + r[ 1 ..- 1 ] } else { str = str[ 0 ].toLowerCase() + str[ 1 ..- 1 ] return str. collect {cc -> (( char )cc).isUpperCase() ? '_' + cc.toLowerCase() : cc}. join ( '' ) } } static String genSerialID() { return "\tprivate static final long serialVersionUID = " +Math.abs( new Random().nextLong())+ "L;" } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~