本文介绍了如何获得真正的httpServletRequest和响应作为Servlet编程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过servlet编程获得真正的httpServletRequest和响应
how to get real httpServletRequest and response as servlet programming
我的项目加载jar需要使用此参数.
My project load a jar need use this parameter.
但也许无法发挥作用!
如何解决这个问题?
推荐答案
您可以通过以下方法获取httpServletRequest
:
you can get the httpServletRequest
by this:
request.args.get(ServletWrapper.SERVLET_REQ); //get HttpServletRequest
request.args.get(ServletWrapper.SERVLET_RES); //get httpServletResponse
这篇关于如何获得真正的httpServletRequest和响应作为Servlet编程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!