java中getAttribute和getParameter的区别
的有关信息介绍如下:1、HttpServletRequest类有setAttribute()方法,而没有setParameter()方法。
2、当两个Web组件之间为链接关系时,被链接的组件通过getParameter()方法来获得请求参数;request.getAttribute("name")。
——getParameter得到的都是String类型的。或者是http://a.jsp?id=123中的123,或者是某个表单提交过去的数据。
——getAttribute则可以是对象。
——getParameter()是获取POST/GET传递的参数值;
——getAttribute()是获取对象容器中的数据值;
——getParameter:用于客户端重定向时,即点击了链接或提交按扭时传值用,即用于在用表单或url重定向传值时接收数据用。
——getAttribute:用于服务器端重定向时,即在sevlet中使用了forward函数,或struts中使用了mapping.findForward。getAttribute只能收到程序用setAttribute传过来的值。