spring portlet MVC 和请求参数

发布于 2024-08-12 09:00:03 字数 285 浏览 3 评论 0原文

我在 URL 中设置了多个参数 (page.jsp?param1=value&param2=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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚笙 2024-08-19 09:00:03

该问题可能是由于 重定向请求 (转发并包含不会更改参数)。 多部分请求< /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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文