forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
6 years ago
|
package com.fanruan.api.web;
|
||
|
|
||
|
import com.fr.web.utils.WebUtils;
|
||
|
|
||
|
import javax.servlet.http.HttpServletRequest;
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class WebKit {
|
||
|
/**
|
||
|
* 将HTTPServletRequest中的所有参数都读取出来,存储在一个Map中,返回出去
|
||
|
* @param req 请求
|
||
|
* @return 参数的map
|
||
|
* */
|
||
|
public static Map<String, Object> parameters4SessionIDInfor(HttpServletRequest req){
|
||
|
return WebUtils.parameters4SessionIDInfor(req);
|
||
|
}
|
||
|
}
|