RequestContext 这个类在 OSChina 中是很重要的一个类。该类由全局 Filter 进行初始化。并传递给包含 Action 和 页面中直接使用。使用时通过 RequestContext.get() 来获取当前请求上下文实例。 这种方法基本的功能包含:自己主动转码、处理文件上传、登录信息处理,以及一些跟请求相关的经常用法封装。 假设你从中发现了什么问题。请指教。
标签: OSCHINA
[1].[代码] java代码 跳至 [1]
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
|
package
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
import
/**
*
*
*
*/
public
private
class );
private
10 * 1024 * 1024 ;
private
"UTF-8" ;
private
new
private
private
private
"$OSCHINA_TEMP_UPLOAD_PATH$" ;
private
null ;
private
private
private
private
private
static
webroot
isResin
//上传的暂时文件夹
upload_tmp_path "WEB-INF"
"tmp"
try
FileUtils.forceMkdir( new
} catch
//BeanUtils对时间转换的初始化设置
ConvertUtils.register( new
null ), class );
ConvertUtils.register( new
SimpleDateFormat new
"yyyy-M-d" );
SimpleDateFormat new
"yyyy-M-d );
@SuppressWarnings ( "rawtypes" )
public
if (value null ) return
;
if
instanceof
return
try
return
} catch
try
return
} catch
return
;
}
}
}}, class );
}
private
String class .getResource( "/" ).getFile();
try
root new
root
} catch
throw
}
return
}
/**
*
*
*
*
*/
public
RequestContext new
rc.context
rc.request
rc.response
rc.response.setCharacterEncoding(UTF_8);
rc.session false );
rc.cookies new
Cookie[]
if (cookies null )
for (Cookie
rc.cookies.put(ck.getName(),
}
contexts.set(rc);
return
}
/**
*
*
*/
public
return
/**
*
*
*/
public
return
}
public
String
if (tmpPath null ){
try
FileUtils.deleteDirectory( new
} catch
log.fatal( "Failed
}
}
this .context null ;
this .request null ;
this .response null ;
this .session null ;
this .cookies null ;
contexts.remove();
}
public
return
public
header( "Pragma" , "No-cache" );
header( "Cache-Control" , "no-cache" );
header( "Expires" ,
}
/**
*
*
*
*/
private
if (req instanceof
return
HttpServletRequest
if ( "POST" .equalsIgnoreCase(req.getMethod())){
try
auto_encoding_req.setCharacterEncoding(UTF_8);
} catch
}
else
(!isResin)
auto_encoding_req new
return
}
/**
*
*
*
*/
private
if (_IsMultipart(req)){
String 10 );
File new
if (!dir.exists()
try {
req.setAttribute(TEMP_UPLOAD_PATH_ATTR_NAME,path);
return
} catch (NullPointerException
} catch (IOException
log.fatal( "Failed
}
}
return
}
public
return
"id" ,
}
public
return
}
@SuppressWarnings ( "unchecked" )
public
return
}
public
String
return
null )?v:((def_value.length> 0 )?
0 ]: null );
}
public
long
return
}
public
int
return
}
public
byte
return
byte )NumberUtils.toInt(param(name),
}
public
return
}
public
[]
String[]
if (values== null ) return
;
return
long [])ConvertUtils.convert(values, long . class );
}
public
return
}
public
return
}
public
throws
response.sendRedirect(uri);
}
public
throws
RequestDispatcher
rd.forward(request,
}
public
throws
RequestDispatcher
rd.include(request,
}
public
return
instanceof
}
public
if (request instanceof
return
return
;
}
public
File
return
null &&Multimedia.isImageFile(imgFile.getName()))?imgFile: null ;
}
public
return
}
public
String
return
}
public
return
"error" ,
}
/**
*
*
*
*/
public
throws
if (!UTF_8.equalsIgnoreCase(response.getCharacterEncoding()))
response.setCharacterEncoding(UTF_8);
response.getWriter().print(msg);
}
public
throws
StringBuilder new
"{" );
for ( int
0 ;i<key.length;i++){
if (i> 0 )
json.append( ',' );
boolean
instanceof
json.append( "\"" );
json.append(key[i]);
json.append( "\":" );
if (!isNum) "\"" );
json.append(value[i]);
if (!isNum) "\"" );
}
json.append( "}" );
print(json.toString());
}
public
throws
output_json( new
new
}
public
int
throws
if (msg.length> 0 )
response.sendError(code, 0 ]);
else
response.sendError(code);
}
public
throws
error(HttpServletResponse.SC_FORBIDDEN);
}
public
throws
error(HttpServletResponse.SC_NOT_FOUND);
}
public
return
public
return
public
boolean
return
null
}
public
HttpSession
return
null )?
null ;
}
public
return
public
return
public
return
public
int
boolean
RequestUtils.setCookie(request,
}
public
boolean
public
return
public
public
int
public
long
/**
*
*
*
*
*
*/
public
try {
T
BeanUtils.populate(bean,
return
} catch (Exception
throw
}
}
/**
*
*
*/
public
return
}
/**
*
*
*
*
*
*/
public
boolean
String "user-agent" ));
int
1 ;
deleteCookie(COOKIE_LOGIN, true );
cookie(COOKIE_LOGIN,new_value,max_age, true );
}
public
deleteCookie(COOKIE_LOGIN, true );
}
/**
*
*
*/
private
try {
Class<?
"com.caucho.Version" );
String "VERSION" ).get(verClass);
String 0 , '.' ));
/**
float
System.out.println("---------------->
*/
return
3.0 ;
} catch (Throwable
return
;
}
/**
*
*
*/
private
extends
private
RequestProxy(HttpServletRequest
super (request);
this .uri_encoding
}
/**
*
*/
public
String super .getParameter(paramName);
return
}
/**
*
*/
@SuppressWarnings ({ "unchecked" , "rawtypes"
public
Map super .getParameterMap();
HashMap<String, new
Iterator<String>
while (iter.hasNext()){
String
Object
if (oValue.getClass().isArray()){
String[]
String[] new
for ( int
0 ;i<values.length;i++)
new_values[i]
new_params.put(key,
}
else {
String
String
if (new_value!= null )
new_params.put(key,new_value);
}
}
return
}
/**
*
*/
public
String[] super .getParameterValues(arg0);
for ( int
0 ;values!= null &&i<values.length;i++)
values[i]
return
}
/**
*
*
*
*/
private
if
||
return
try {
return
"8859_1" ),
} catch (Exception
return
}
}
private
return
null )
.toLowerCase().startsWith( "multipart" )));
}
/**
*
*
*
*
*
*/
public
StringBuilder new
sb.append(user.getId());
sb.append( '|' );
sb.append(user.getPwd());
sb.append( '|' );
sb.append(ip);
sb.append( '|' );
sb.append((user_agent== null )? 0 :user_agent.hashCode());
sb.append( '|' );
sb.append(System.currentTimeMillis());
return
}
/**
*
*
*
*
*/
private
byte []
try {
return
new
} catch (UnsupportedEncodingException
return
;
}
}
/**
*
*
*
*
*/
private
try
value
if (StringUtils.isBlank(value)) return
;
byte []
return
} catch
return
;
}
}
/**
*
*
*
*/
public
try {
Cookie
if (cookie!= null
return
}
} catch (Exception
return
;
}
/**
*
*
*
*/
public
if (StringUtils.isBlank(uuid))
return
;
String
final
'|' );
if (items.length 5 ){
String "user-agent" );
int
null )? 0 :ua.hashCode();
int
3 ]);
if (ua_code
return
public
return
;
public
return
0 ],-1L);
public
return
1 ];
public
return
};
}
}
return
;
}
public
"oscid" ;
private
86400
365 ;
private
[] new
[]{ '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' };
}
|
版权声明:本文博主原创文章,博客,未经同意不得转载。