TestTreeController.java
4.2 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
/**
*
*/
package com.thinkgem.jeesite.test.web;
import java.util.List;
import java.util.Map;
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.bind.annotation.ResponseBody;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.thinkgem.jeesite.common.config.Global;
import com.thinkgem.jeesite.common.web.BaseController;
import com.thinkgem.jeesite.common.utils.StringUtils;
import com.thinkgem.jeesite.test.entity.TestTree;
import com.thinkgem.jeesite.test.service.TestTreeService;
/**
* 树结构生成Controller
* @author ThinkGem
* @version 2015-04-06
*/
@Controller
@RequestMapping(value = "${adminPath}/test/testTree")
public class TestTreeController extends BaseController {
@Autowired
private TestTreeService testTreeService;
@ModelAttribute
public TestTree get(@RequestParam(required=false) String id) {
TestTree entity = null;
if (StringUtils.isNotBlank(id)){
entity = testTreeService.get(id);
}
if (entity == null){
entity = new TestTree();
}
return entity;
}
@RequiresPermissions("test:testTree:view")
@RequestMapping(value = {"list", ""})
public String list(TestTree testTree, HttpServletRequest request, HttpServletResponse response, Model model) {
List<TestTree> list = testTreeService.findList(testTree);
model.addAttribute("list", list);
return "jeesite/test/testTreeList";
}
@RequiresPermissions("test:testTree:view")
@RequestMapping(value = "form")
public String form(TestTree testTree, Model model) {
if (testTree.getParent()!=null && StringUtils.isNotBlank(testTree.getParent().getId())){
testTree.setParent(testTreeService.get(testTree.getParent().getId()));
// 获取排序号,最末节点排序号+30
if (StringUtils.isBlank(testTree.getId())){
TestTree testTreeChild = new TestTree();
testTreeChild.setParent(new TestTree(testTree.getParent().getId()));
List<TestTree> list = testTreeService.findList(testTree);
if (list.size() > 0){
testTree.setSort(list.get(list.size()-1).getSort());
if (testTree.getSort() != null){
testTree.setSort(testTree.getSort() + 30);
}
}
}
}
if (testTree.getSort() == null){
testTree.setSort(30);
}
model.addAttribute("testTree", testTree);
return "jeesite/test/testTreeForm";
}
@RequiresPermissions("test:testTree:edit")
@RequestMapping(value = "save")
public String save(TestTree testTree, Model model, RedirectAttributes redirectAttributes) {
if (!beanValidator(model, testTree)){
return form(testTree, model);
}
testTreeService.save(testTree);
addMessage(redirectAttributes, "保存树结构成功");
return "redirect:"+Global.getAdminPath()+"/test/testTree/?repage";
}
@RequiresPermissions("test:testTree:edit")
@RequestMapping(value = "delete")
public String delete(TestTree testTree, RedirectAttributes redirectAttributes) {
testTreeService.delete(testTree);
addMessage(redirectAttributes, "删除树结构成功");
return "redirect:"+Global.getAdminPath()+"/test/testTree/?repage";
}
@RequiresPermissions("user")
@ResponseBody
@RequestMapping(value = "treeData")
public List<Map<String, Object>> treeData(@RequestParam(required=false) String extId, HttpServletResponse response) {
List<Map<String, Object>> mapList = Lists.newArrayList();
List<TestTree> list = testTreeService.findList(new TestTree());
for (int i=0; i<list.size(); i++){
TestTree e = list.get(i);
if (StringUtils.isBlank(extId) || (extId!=null && !extId.equals(e.getId()) && e.getParentIds().indexOf(","+extId+",")==-1)){
Map<String, Object> map = Maps.newHashMap();
map.put("id", e.getId());
map.put("pId", e.getParentId());
map.put("name", e.getName());
mapList.add(map);
}
}
return mapList;
}
}