HttpServletRequest

How can we access the HttpServletRequest

痴心易碎 提交于 2019-12-04 09:11:17
You can obtain the request by asking the ActionContext or implementing ServletRequestAware. Implementing ServletRequestAware is preferred. 获得request可以通过请求 ActionContext 和继承 ServletRequestAware。优先 继承 ServletRequestAware 1、 请求 ActionContext HttpServletRequest request = ServletActionContext.getRequest(); 2、 继承 ServletRequestAware (1)Ensure that servlet-config Interceptor is included in the Action's stack. The default stack already includes servlet-config . (2)Edit the Action so that it implements the ServletRequestAware interface. The ServletRequestAware interface expects a setServletRequest

HttpRequest 中getParameter() ,getInputStream(),requ

蓝咒 提交于 2019-11-29 05:35:00
request.getParameter() 、 request.getInputStream()和request.getReader() 使用体会 1.遇到问题:使用s2sh框架的时候再通过url访问某个action的时候调用 request.getReader() ,通过这个方法得不到数据流。但是request的parametermap中却又url参数。 2.解决问题:通过在网上查找内容,但是我也不知道该怎么搜。最终还是搜到一份答案,我认为还算合理的。现在总结如下。 1)form表单提交数据是的编码不同,可以有多种如 enctype=application/x- www-form-urlencoded , 这种编码方式是默认的编码方式。 这种编码方式( application/x-www-form-urlencoded )虽然简单,但对于传输大块的二进制数据显得力不从心。 对于传输 大块的二进制数 这类数据,浏览器 采用了另一种编码方式,即 "multipart/form-data" 的编码方式: 浏览器可以很容易将表单内的数据和文件放在一起发送。这 种编码方式先定义好一个不可能在数据中出现的字符串作为 分界符,然后用它将各个数据段分开,而对于每个数据段都对应着 HTML 页面表单 中的一个Input 区,包括一个 content-disposition 属性