BaseController.java
6.1 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
package com.huaheng.framework.web.controller;
import java.util.Date;
import java.util.List;
import java.text.SimpleDateFormat;
import java.util.concurrent.Semaphore;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.huaheng.framework.web.page.PageDomain;
import com.huaheng.framework.web.page.TableSupport;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.pc.system.user.domain.User;
/**
* web层通用数据处理
*
* @author huaheng
*/
public class BaseController
{
/**
* 将前台传递过来的日期格式的字符串,自动转化为Date类型
*/
@InitBinder
public void initBinder(WebDataBinder binder)
{
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
// DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
// LocalDateTime time = LocalDateTime.now();
// String localTime = df.format(time);
// 将LocalDateTime转为String
}
/**
* 设置请求分页数据
*/
protected void startPage()
{
PageDomain pageDomain = TableSupport.buildPageRequest();
Integer pageNum = pageDomain.getPageNum();
Integer pageSize = pageDomain.getPageSize();
if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize))
{
String orderBy = pageDomain.getOrderBy();
PageHelper.startPage(pageNum, pageSize, orderBy);
}
}
protected void startPages()
{
PageDomain pageDomain = TableSupport.buildPageRequest();
Integer pageNum = pageDomain.getPageNum();
Integer pageSize = pageDomain.getPageSize()/2;
if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize))
{
String orderBy = pageDomain.getOrderBy();
PageHelper.startPage(pageNum, pageSize, orderBy);
}
}
/**
* 设置请求分页数据
*/
protected void startPage(Integer pageNum, Integer pageSize, String orderBy)
{
PageHelper.startPage(pageNum, pageSize, orderBy);
}
/**
* 响应请求分页数据
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
protected TableDataInfo getDataTable(List<?> list)
{
TableDataInfo rspData = new TableDataInfo();
rspData.setCode(200);
rspData.setData(list);
rspData.setTotal(new PageInfo(list).getTotal());
return rspData;
}
/**
* 响应返回结果
*
* @param rows 影响行数
* @return 操作结果
*/
protected AjaxResult toAjax(int rows)
{
return rows > 0 ? success() : error();
}
/**
* 响应返回结果
*
* @param succeed 是否成功
* @return 操作结果
*/
protected AjaxResult toAjax(boolean succeed)
{
return succeed ? success() : error();
}
/**
* 返回成功
*/
public AjaxResult success()
{
return AjaxResult.success("操作成功!");
}
/**
* 返回失败消息
*/
public AjaxResult error()
{
return AjaxResult.error("操作失败!");
}
/**
* 返回成功消息
*/
public AjaxResult success(String message)
{
return AjaxResult.success(message);
}
/**
* 返回失败消息
*/
public AjaxResult error(String message)
{
return AjaxResult.error(message);
}
// /**
// * 返回错误码消息
// */
// public AjaxResult error(int code, String message)
// {
// return AjaxResult.error(code, message);
// }
/**
* 页面跳转
*/
public String redirect(String url)
{
return StringUtils.format("redirect:{}", url);
}
public User getUser()
{
return ShiroUtils.getUser();
}
public void setUser(User user)
{
ShiroUtils.setUser(user);
}
public Integer getUserId()
{
return getUser().getId();
}
public String getLoginName()
{
return getUser().getLoginName();
}
/**
* mybatis-plus响应请求分页数据
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
protected TableDataInfo getMpDataTable(List<?> list, Long total) {
TableDataInfo rspData = new TableDataInfo();
rspData.setCode(200);
rspData.setData(list);
rspData.setTotal(total);
return rspData;
}
Semaphore semaphore=new Semaphore(1);
public AjaxResult handleMultiProcess(MultiProcessListener multiProcessListener) {
AjaxResult ajaxResult = null;
int max_time = 30 * 1000;
int now = 0;
boolean avail = true;
while(avail) {
int availablePermits = semaphore.availablePermits();
if(availablePermits >0) {
avail = false;
try {
semaphore.acquire(1);
ajaxResult = multiProcessListener.doProcess();
} catch (Exception e) {
e.printStackTrace();
ajaxResult = AjaxResult.error(e.getMessage());
} finally {
semaphore.release(1);
}
} else {
ajaxResult = AjaxResult.error("多线程处理异常");
try {
now = now + 200;
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
if(now >= max_time) {
avail = false;
}
}
}
return ajaxResult;
}
public interface MultiProcessListener {
AjaxResult doProcess();
}
}