5d2304b28fddf3ba427a8313e51a4b531e2a2ca1.svn-base
12.6 KB
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.gen.util;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.Resource;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.thinkgem.jeesite.common.config.Global;
import com.thinkgem.jeesite.common.mapper.JaxbMapper;
import com.thinkgem.jeesite.common.utils.DateUtils;
import com.thinkgem.jeesite.common.utils.FileUtils;
import com.thinkgem.jeesite.common.utils.FreeMarkers;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.modules.gen.entity.GenCategory;
import com.thinkgem.jeesite.modules.gen.entity.GenConfig;
import com.thinkgem.jeesite.modules.gen.entity.GenScheme;
import com.thinkgem.jeesite.modules.gen.entity.GenTable;
import com.thinkgem.jeesite.modules.gen.entity.GenTableColumn;
import com.thinkgem.jeesite.modules.gen.entity.GenTemplate;
import com.thinkgem.jeesite.modules.sys.entity.Area;
import com.thinkgem.jeesite.modules.sys.entity.Office;
import com.thinkgem.jeesite.modules.sys.entity.User;
import com.thinkgem.jeesite.modules.sys.utils.UserUtils;
/**
* 代码生成工具类
* @author ThinkGem
* @version 2013-11-16
*/
public class GenUtils {
private static Logger logger = LoggerFactory.getLogger(GenUtils.class);
/**
* 初始化列属性字段
* @param genTable
*/
public static void initColumnField(GenTable genTable){
for (GenTableColumn column : genTable.getColumnList()){
// 如果是不是新增列,则跳过。
if (StringUtils.isNotBlank(column.getId())){
continue;
}
// 设置字段说明
if (StringUtils.isBlank(column.getComments())){
column.setComments(column.getName());
}
// 设置java类型
if (StringUtils.startsWithIgnoreCase(column.getJdbcType(), "CHAR")
|| StringUtils.startsWithIgnoreCase(column.getJdbcType(), "VARCHAR")
|| StringUtils.startsWithIgnoreCase(column.getJdbcType(), "NARCHAR")){
column.setJavaType("String");
}else if (StringUtils.startsWithIgnoreCase(column.getJdbcType(), "DATETIME")
|| StringUtils.startsWithIgnoreCase(column.getJdbcType(), "DATE")
|| StringUtils.startsWithIgnoreCase(column.getJdbcType(), "TIMESTAMP")){
column.setJavaType("java.util.Date");
column.setShowType("dateselect");
}else if (StringUtils.startsWithIgnoreCase(column.getJdbcType(), "BIGINT")
|| StringUtils.startsWithIgnoreCase(column.getJdbcType(), "NUMBER")){
// 如果是浮点型
String[] ss = StringUtils.split(StringUtils.substringBetween(column.getJdbcType(), "(", ")"), ",");
if (ss != null && ss.length == 2 && Integer.parseInt(ss[1])>0){
column.setJavaType("Double");
}
// 如果是整形
else if (ss != null && ss.length == 1 && Integer.parseInt(ss[0])<=10){
column.setJavaType("Integer");
}
// 长整形
else{
column.setJavaType("Long");
}
}
// 设置java字段名
column.setJavaField(StringUtils.toCamelCase(column.getName()));
// 是否是主键
column.setIsPk(genTable.getPkList().contains(column.getName())?"1":"0");
// 插入字段
column.setIsInsert("1");
// 编辑字段
if (!StringUtils.equalsIgnoreCase(column.getName(), "id")
&& !StringUtils.equalsIgnoreCase(column.getName(), "create_by")
&& !StringUtils.equalsIgnoreCase(column.getName(), "create_date")
&& !StringUtils.equalsIgnoreCase(column.getName(), "del_flag")){
column.setIsEdit("1");
}
// 列表字段
if (StringUtils.equalsIgnoreCase(column.getName(), "name")
|| StringUtils.equalsIgnoreCase(column.getName(), "title")
|| StringUtils.equalsIgnoreCase(column.getName(), "remarks")
|| StringUtils.equalsIgnoreCase(column.getName(), "update_date")){
column.setIsList("1");
}
// 查询字段
if (StringUtils.equalsIgnoreCase(column.getName(), "name")
|| StringUtils.equalsIgnoreCase(column.getName(), "title")){
column.setIsQuery("1");
}
// 查询字段类型
if (StringUtils.equalsIgnoreCase(column.getName(), "name")
|| StringUtils.equalsIgnoreCase(column.getName(), "title")){
column.setQueryType("like");
}
// 设置特定类型和字段名
// 用户
if (StringUtils.startsWithIgnoreCase(column.getName(), "user_id")){
column.setJavaType(User.class.getName());
column.setJavaField(column.getJavaField().replaceAll("Id", ".id|name"));
column.setShowType("userselect");
}
// 部门
else if (StringUtils.startsWithIgnoreCase(column.getName(), "office_id")){
column.setJavaType(Office.class.getName());
column.setJavaField(column.getJavaField().replaceAll("Id", ".id|name"));
column.setShowType("officeselect");
}
// 区域
else if (StringUtils.startsWithIgnoreCase(column.getName(), "area_id")){
column.setJavaType(Area.class.getName());
column.setJavaField(column.getJavaField().replaceAll("Id", ".id|name"));
column.setShowType("areaselect");
}
// 创建者、更新者
else if (StringUtils.startsWithIgnoreCase(column.getName(), "create_by")
|| StringUtils.startsWithIgnoreCase(column.getName(), "update_by")){
column.setJavaType(User.class.getName());
column.setJavaField(column.getJavaField() + ".id");
}
// 创建时间、更新时间
else if (StringUtils.startsWithIgnoreCase(column.getName(), "create_date")
|| StringUtils.startsWithIgnoreCase(column.getName(), "update_date")){
column.setShowType("dateselect");
}
// 备注、内容
else if (StringUtils.equalsIgnoreCase(column.getName(), "remarks")
|| StringUtils.equalsIgnoreCase(column.getName(), "content")){
column.setShowType("textarea");
}
// 父级ID
else if (StringUtils.equalsIgnoreCase(column.getName(), "parent_id")){
column.setJavaType("This");
column.setJavaField("parent.id|name");
column.setShowType("treeselect");
}
// 所有父级ID
else if (StringUtils.equalsIgnoreCase(column.getName(), "parent_ids")){
column.setQueryType("like");
}
// 删除标记
else if (StringUtils.equalsIgnoreCase(column.getName(), "del_flag")){
column.setShowType("radiobox");
column.setDictType("del_flag");
}
}
}
/**
* 获取模板路径
* @return
*/
public static String getTemplatePath(){
try{
File file = new DefaultResourceLoader().getResource("").getFile();
if(file != null){
return file.getAbsolutePath() + File.separator + StringUtils.replaceEach(GenUtils.class.getName(),
new String[]{"util."+GenUtils.class.getSimpleName(), "."}, new String[]{"template", File.separator});
}
}catch(Exception e){
logger.error("{}", e);
}
return "";
}
/**
* XML文件转换为对象
* @param fileName
* @param clazz
* @return
*/
@SuppressWarnings("unchecked")
public static <T> T fileToObject(String fileName, Class<?> clazz){
try {
String pathName = "/templates/modules/gen/" + fileName;
// logger.debug("File to object: {}", pathName);
Resource resource = new ClassPathResource(pathName);
InputStream is = resource.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
StringBuilder sb = new StringBuilder();
while (true) {
String line = br.readLine();
if (line == null){
break;
}
sb.append(line).append("\r\n");
}
if (is != null) {
is.close();
}
if (br != null) {
br.close();
}
// logger.debug("Read file content: {}", sb.toString());
return (T) JaxbMapper.fromXml(sb.toString(), clazz);
} catch (IOException e) {
logger.warn("Error file convert: {}", e.getMessage());
}
// String pathName = StringUtils.replace(getTemplatePath() + "/" + fileName, "/", File.separator);
// logger.debug("file to object: {}", pathName);
// String content = "";
// try {
// content = FileUtils.readFileToString(new File(pathName), "utf-8");
//// logger.debug("read config content: {}", content);
// return (T) JaxbMapper.fromXml(content, clazz);
// } catch (IOException e) {
// logger.warn("error convert: {}", e.getMessage());
// }
return null;
}
/**
* 获取代码生成配置对象
* @return
*/
public static GenConfig getConfig(){
return fileToObject("config.xml", GenConfig.class);
}
/**
* 根据分类获取模板列表
* @param config
* @param genScheme
* @param isChildTable 是否是子表
* @return
*/
public static List<GenTemplate> getTemplateList(GenConfig config, String category, boolean isChildTable){
List<GenTemplate> templateList = Lists.newArrayList();
if (config !=null && config.getCategoryList() != null && category != null){
for (GenCategory e : config.getCategoryList()){
if (category.equals(e.getValue())){
List<String> list = null;
if (!isChildTable){
list = e.getTemplate();
}else{
list = e.getChildTableTemplate();
}
if (list != null){
for (String s : list){
if (StringUtils.startsWith(s, GenCategory.CATEGORY_REF)){
templateList.addAll(getTemplateList(config, StringUtils.replace(s, GenCategory.CATEGORY_REF, ""), false));
}else{
GenTemplate template = fileToObject(s, GenTemplate.class);
if (template != null){
templateList.add(template);
}
}
}
}
break;
}
}
}
return templateList;
}
/**
* 获取数据模型
* @param genScheme
* @param genTable
* @return
*/
public static Map<String, Object> getDataModel(GenScheme genScheme){
Map<String, Object> model = Maps.newHashMap();
model.put("packageName", StringUtils.lowerCase(genScheme.getPackageName()));
model.put("lastPackageName", StringUtils.substringAfterLast((String)model.get("packageName"),"."));
model.put("moduleName", StringUtils.lowerCase(genScheme.getModuleName()));
model.put("subModuleName", StringUtils.lowerCase(genScheme.getSubModuleName()));
model.put("className", StringUtils.uncapitalize(genScheme.getGenTable().getClassName()));
model.put("ClassName", StringUtils.capitalize(genScheme.getGenTable().getClassName()));
model.put("functionName", genScheme.getFunctionName());
model.put("functionNameSimple", genScheme.getFunctionNameSimple());
model.put("functionAuthor", StringUtils.isNotBlank(genScheme.getFunctionAuthor())?genScheme.getFunctionAuthor():UserUtils.getUser().getName());
model.put("functionVersion", DateUtils.getDate());
model.put("urlPrefix", model.get("moduleName")+(StringUtils.isNotBlank(genScheme.getSubModuleName())
?"/"+StringUtils.lowerCase(genScheme.getSubModuleName()):"")+"/"+model.get("className"));
model.put("viewPrefix", //StringUtils.substringAfterLast(model.get("packageName"),".")+"/"+
model.get("urlPrefix"));
model.put("permissionPrefix", model.get("moduleName")+(StringUtils.isNotBlank(genScheme.getSubModuleName())
?":"+StringUtils.lowerCase(genScheme.getSubModuleName()):"")+":"+model.get("className"));
model.put("dbType", Global.getConfig("jdbc.type"));
model.put("table", genScheme.getGenTable());
return model;
}
/**
* 生成到文件
* @param tpl
* @param model
* @param replaceFile
* @return
*/
public static String generateToFile(GenTemplate tpl, Map<String, Object> model, boolean isReplaceFile){
// 获取生成文件
String fileName = Global.getProjectPath() + File.separator
+ StringUtils.replaceEach(FreeMarkers.renderString(tpl.getFilePath() + "/", model),
new String[]{"//", "/", "."}, new String[]{File.separator, File.separator, File.separator})
+ FreeMarkers.renderString(tpl.getFileName(), model);
logger.debug(" fileName === " + fileName);
// 获取生成文件内容
String content = FreeMarkers.renderString(StringUtils.trimToEmpty(tpl.getContent()), model);
logger.debug(" content === \r\n" + content);
// 如果选择替换文件,则删除原文件
if (isReplaceFile){
FileUtils.deleteFile(fileName);
}
// 创建并写入文件
if (FileUtils.createFile(fileName)){
FileUtils.writeToFile(fileName, content, true);
logger.debug(" file create === " + fileName);
return "生成成功:"+fileName+"<br/>";
}else{
logger.debug(" file extents === " + fileName);
return "文件已存在:"+fileName+"<br/>";
}
}
public static void main(String[] args) {
try {
GenConfig config = getConfig();
System.out.println(config);
System.out.println(JaxbMapper.toXml(config));
} catch (Exception e) {
e.printStackTrace();
}
}
}