我想在HttpServletRequest
。
以下代码
request().getParameterMap().put("j_username", user);
request().getParameterMap().put("j_password", pwd);
创建此错误
no modifications are allowed to a locked parameter map
这样做的正确方法是什么?
答案 0 :(得分:8)
我遇到了类似的问题,并通过制作参数图的副本来解决它。
Map<String, String[]> params = new HashMap<String, String[]>(req.getParameterMap());