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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
@Slf4j public class MybatisGeneratorPlugin extends PluginAdapter {
private static String CURRENT_GIT_USER_NAME = "Your name";
public static void main(String[] args) { args = new String[] { "-configfile", System.getProperty("user.dir")+"/src/main/resources/mybatis-generator.xml", "-overwrite" }; ShellRunner.main(args); }
static{ ProcessBuilder processBuilder = new ProcessBuilder(); processBuilder.command("git", "config", "--global", "user.name"); try { Process process = processBuilder.start(); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); CURRENT_GIT_USER_NAME = reader.readLine(); } catch (IOException e) { log.error("MybatisGeneratorPlugin 获取当前git用户名异常"); } }
@Override public boolean validate(List<String> list) { return true; }
@Override public boolean modelBaseRecordClassGenerated(TopLevelClass topLevelClass, IntrospectedTable introspectedTable) { topLevelClass.addImportedType("lombok.Data"); topLevelClass.addAnnotation("@Data"); if (StringUtility.stringHasValue(introspectedTable.getRemarks())) { topLevelClass.addJavaDocLine("/**"); topLevelClass.addJavaDocLine(" * " + introspectedTable.getRemarks()); topLevelClass.addJavaDocLine(" *"); topLevelClass.addJavaDocLine(" * @author " + CURRENT_GIT_USER_NAME); topLevelClass.addJavaDocLine(" * @date " + new SimpleDateFormat("yyyy/MM/dd").format(new Date())); topLevelClass.addJavaDocLine(" */"); } else { topLevelClass.addJavaDocLine("/**"); topLevelClass.addJavaDocLine(" * TODO 请添加类注释"); topLevelClass.addJavaDocLine(" *"); topLevelClass.addJavaDocLine(" * @author " + CURRENT_GIT_USER_NAME); topLevelClass.addJavaDocLine(" * @date " + new SimpleDateFormat("yyyy/MM/dd").format(new Date())); topLevelClass.addJavaDocLine(" */"); } return true;
}
@Override public boolean modelFieldGenerated(Field field, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, ModelClassType modelClassType) { if (StringUtility.stringHasValue(introspectedColumn.getRemarks())) { field.addJavaDocLine("/**"); field.addJavaDocLine(" * " + introspectedColumn.getRemarks()); field.addJavaDocLine(" */"); } return true; }
@Override public boolean clientGenerated(Interface var1, IntrospectedTable var2){ var1.addJavaDocLine("import org.apache.ibatis.annotations.Mapper;"); var1.addJavaDocLine("\n"); var1.addJavaDocLine("/**"); var1.addJavaDocLine(" * TODO 请添加类注释"); var1.addJavaDocLine(" *"); var1.addJavaDocLine(" * @author "+CURRENT_GIT_USER_NAME); var1.addJavaDocLine(" * @date " + new SimpleDateFormat("yyyy/MM/dd").format(new Date())); var1.addJavaDocLine(" */");
var1.addAnnotation("@Mapper"); return true; }
@Override public boolean modelGetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, ModelClassType modelClassType) { return false; }
@Override public boolean modelSetterMethodGenerated(Method method, TopLevelClass topLevelClass, IntrospectedColumn introspectedColumn, IntrospectedTable introspectedTable, ModelClassType modelClassType) { return false; }
@Override public boolean clientInsertSelectiveMethodGenerated(Method var1, Interface var2, IntrospectedTable var3){ return false; }
@Override public boolean clientInsertSelectiveMethodGenerated(KotlinFunction kotlinFunction, KotlinFile kotlinFile, IntrospectedTable introspectedTable) { return false; }
@Override public boolean clientUpdateByExampleSelectiveMethodGenerated(Method var1, Interface var2, IntrospectedTable var3){ return false; }
@Override public boolean clientUpdateAllColumnsMethodGenerated(Method var1, Interface var2, IntrospectedTable var3){ return false; }
@Override public boolean sqlMapInsertSelectiveElementGenerated(XmlElement var1, IntrospectedTable var2){ return false; }
@Override public boolean sqlMapUpdateByExampleSelectiveElementGenerated(XmlElement var1, IntrospectedTable var2){ return false; }
@Override public boolean clientDeleteByPrimaryKeyMethodGenerated(Method var1, Interface var2, IntrospectedTable var3){ return false; }
@Override public boolean clientDeleteByPrimaryKeyMethodGenerated(KotlinFunction kotlinFunction, KotlinFile kotlinFile, IntrospectedTable introspectedTable) { return false; }
@Override public boolean sqlMapDeleteByPrimaryKeyElementGenerated(XmlElement var1, IntrospectedTable var2){ return false; } }
|