spring portlet MVC 和请求参数
我在 URL 中设置了多个参数 (page.jsp?param1=value¶m2=value2)。当请求 url 时,它将控制权传递给 Controller 类,扩展 AbstractConrtoller ,该类重写handleRenderRequestInternal 来执行我的逻辑。在这里,我尝试使用 request.getAttribute 和 getParameter 检索请求属性,但两者都没有返回值。
我有什么想法可以访问参数吗?
我是否需要获取 HttpSession 的实例然后进行查找?
Im setting a number of params in a URL (page.jsp?param1=value¶m2=value2). When the url is requested it passes control to a Controller class, extending AbstractConrtoller , which overrides handleRenderRequestInternal to do my logic. Inside here i try to retrieve the request attributes using request.getAttribute and getParameter however neither return a value.
Any ideas how i can access the params?
Do i need to get an instance of the HttpSession and then make the lookup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题可能是由于 重定向请求 (转发并包含不会更改参数)。 多部分请求< /a>(即文件上传请求)在请求中也不会包含参数。
请求参数不会在Session中结束。
The problem could be due to a redirected request (forward and include won't change the parameter). A multi-part request (i.e. file upload request) would be without parameters in the request, too.
Request parameter will not end up in the Session.