GenTableController.java
3.78 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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.gen.web;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.common.web.BaseController;
import com.thinkgem.jeesite.modules.sys.entity.User;
import com.thinkgem.jeesite.modules.sys.utils.UserUtils;
import com.thinkgem.jeesite.modules.gen.entity.GenTable;
import com.thinkgem.jeesite.modules.gen.service.GenTableService;
import com.thinkgem.jeesite.modules.gen.util.GenUtils;
/**
* 业务表Controller
* @author ThinkGem
* @version 2013-10-15
*/
@Controller
@RequestMapping(value = "${adminPath}/gen/genTable")
public class GenTableController extends BaseController {
@Autowired
private GenTableService genTableService;
@ModelAttribute
public GenTable get(@RequestParam(required=false) String id) {
if (StringUtils.isNotBlank(id)){
return genTableService.get(id);
}else{
return new GenTable();
}
}
@RequiresPermissions("gen:genTable:view")
@RequestMapping(value = {"list", ""})
public String list(GenTable genTable, HttpServletRequest request, HttpServletResponse response, Model model) {
User user = UserUtils.getUser();
if (!user.isAdmin()){
genTable.setCreateBy(user);
}
Page<GenTable> page = genTableService.find(new Page<GenTable>(request, response), genTable);
model.addAttribute("page", page);
return "modules/gen/genTableList";
}
@RequiresPermissions("gen:genTable:view")
@RequestMapping(value = "form")
public String form(GenTable genTable, Model model) {
// 获取物理表列表
List<GenTable> tableList = genTableService.findTableListFormDb(new GenTable());
model.addAttribute("tableList", tableList);
// 验证表是否存在
if (StringUtils.isBlank(genTable.getId()) && !genTableService.checkTableName(genTable.getName())){
addMessage(model, "下一步失败!" + genTable.getName() + " 表已经添加!");
genTable.setName("");
}
// 获取物理表字段
else{
genTable = genTableService.getTableFormDb(genTable);
}
model.addAttribute("genTable", genTable);
model.addAttribute("config", GenUtils.getConfig());
return "modules/gen/genTableForm";
}
@RequiresPermissions("gen:genTable:edit")
@RequestMapping(value = "save")
public String save(GenTable genTable, Model model, RedirectAttributes redirectAttributes) {
if (!beanValidator(model, genTable)){
return form(genTable, model);
}
// 验证表是否已经存在
if (StringUtils.isBlank(genTable.getId()) && !genTableService.checkTableName(genTable.getName())){
addMessage(model, "保存失败!" + genTable.getName() + " 表已经存在!");
genTable.setName("");
return form(genTable, model);
}
genTableService.save(genTable);
addMessage(redirectAttributes, "保存业务表'" + genTable.getName() + "'成功");
return "redirect:" + adminPath + "/gen/genTable/?repage";
}
@RequiresPermissions("gen:genTable:edit")
@RequestMapping(value = "delete")
public String delete(GenTable genTable, RedirectAttributes redirectAttributes) {
genTableService.delete(genTable);
addMessage(redirectAttributes, "删除业务表成功");
return "redirect:" + adminPath + "/gen/genTable/?repage";
}
}