使用 ICEFaces 时是否可以替代 FacesContext 来检索 GET 值?

发布于 2024-12-19 05:18:19 字数 466 浏览 3 评论 0原文

我需要检索使用 URL 传递给页面的 2 个 GET 参数的值,问题是 FacesContext 仅在一组具有引用会话的页面中工作;在本例中,我使用 GET,因为 URL 是从电子邮件访问的,而不是从其他页面访问的。

我尝试了 FacesContext 方法:

FacesContext context = FacesContext.getCurrentInstance();    
String login = context.getExternalContext().getRequestParameterMap().get("login");
String id = context.getExternalContext().getRequestParameterMap().get("idReunion")

但在尝试获取上下文时它返回 null,还有其他想法如何在不使用 FacesContext 的情况下完成相同的任务吗?

I need to retrieve the value of 2 GET parameters I pass to the page using the URL, the problem is that FacesContext just work within a group of pages with a referenced session; and in this case I'm using GET because the url is accessed from an e-mail and not from another page.

I tried the FacesContext approach:

FacesContext context = FacesContext.getCurrentInstance();    
String login = context.getExternalContext().getRequestParameterMap().get("login");
String id = context.getExternalContext().getRequestParameterMap().get("idReunion")

But it returns null when trying to get the context, any other idea how I can accomplish the same without using FacesContext?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

放血 2024-12-26 05:18:19

FacesContext 是正确的选择。我们将其用于您的应用程序并获取参数。

您用“portlet”标记了您的问题。根据您的门户,您无法通过 url 直接将参数传递到您的应用程序。有时您需要特殊处理...

The FacesContext is the way to go. We are using it for your applications and are getting parameters as well.

You flagged your questions with "portlet". Depending on your portal you cannot directly pass parameters to your application via the url. Sometimes you require special handling...

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