getAttribute()与getParameter()的区别

1.getAttribute()

用于两个Web组件之间为转发关系时,转发目标组件通过getAttribute()方法来和转发源组件共享request,session范围内的数据。

2.getParameter()

用于用于客户端重定向时,即当两个Web组件之间为链接关系时,被链接的组件通过getParameter()方法来获得请求参数

3.总结

request.getAttribute()方法返回request,session范围内存在的对象,而request.getParameter()方法是获取http提交过来的数据。

你可能感兴趣的:(getAttribute()与getParameter()的区别)