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.
17 lines
477 B
17 lines
477 B
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); |
|
} |
|
}
|
|
|