h:commandbutton,如何重定向到外部站点?(JSF 2)

发布于 2024-12-01 02:35:34 字数 1646 浏览 1 评论 0原文

当我使用命令按钮重定向到项目中的页面时,您只需提供不带扩展名的页面名称,然后在操作属性中添加 ?faces-redirect=true ,我将被重定向。

但是如果我想重定向到外部页面(例如:www.google.com)怎么办?

我尝试了很多方法:

www.google.com、google.com、http://google.com

但我失败了。

这就是我所做的:

<h:form>
            <h:commandButton 
                action="#{mainPageBB.goToLink}" value="#{msgs.clickhere}"/>
        </h:form>

然后是支持 bean:

@Named("mainPageBB")
@RequestScoped
public class MainPageBB {

    @EJB
    private ILinkManagerEJB linkManagerEJB;


    public String goToLink() {      
        String link = linkManagerEJB.retrieveLink();
        if(link != null) {
                    System.out.println(link);       
            return link.trim() + "?faces-redirect=true";
        }
        return null;
    }

注意:retrieveLink(); 返回的值始终是 www.google.com(100% 确定)

我在控制台中完全没有收到任何错误,页面刚刚刷新。另外,我确信第一个 if 子句验证为 true,因此我认为它没有理由跳转到返回 null。

更新

我尝试使用外部上下文,但收到 404,因为它将当前 url 附加到链接字符串:

public String goToRandomLink() {        
        String link = linkManagerEJB.retrieveRandomLink();
        if(link != null) {      
            ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
            try {
                externalContext.redirect(link.trim());
            } catch (IOException e) {               
                e.printStackTrace();
            }           
        }
        return null;
    }

When i use command button to redirect to pages, inside my project, u just need to give the name of the page with no extention, followed by ?faces-redirect=true in the action attribute and i will get redirected.

But what if i want to get redirected to an external page(example:www.google.com)?

I tried in many ways:

www.google.com, google.com, http://google.com

but i failed.

This is what i did:

<h:form>
            <h:commandButton 
                action="#{mainPageBB.goToLink}" value="#{msgs.clickhere}"/>
        </h:form>

and then the backing bean:

@Named("mainPageBB")
@RequestScoped
public class MainPageBB {

    @EJB
    private ILinkManagerEJB linkManagerEJB;


    public String goToLink() {      
        String link = linkManagerEJB.retrieveLink();
        if(link != null) {
                    System.out.println(link);       
            return link.trim() + "?faces-redirect=true";
        }
        return null;
    }

Note: the value returned by retrieveLink(); is always www.google.com(100% sure)

I get no errors at all in the console, the page just refreshes. Also i am sure the first if clause validates to true, so i see no reason for it to jump to return null.

Update

I tried with external context, but i get a 404 because it appends the current url to the link string:

public String goToRandomLink() {        
        String link = linkManagerEJB.retrieveRandomLink();
        if(link != null) {      
            ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
            try {
                externalContext.redirect(link.trim());
            } catch (IOException e) {               
                e.printStackTrace();
            }           
        }
        return null;
    }

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

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

发布评论

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

评论(2

冰雪之触 2024-12-08 02:35:34

使用 ExternalContext.redirect( )

ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
externalContext.redirect(link.trim());

如果您已经知道该链接,只需使用

#{msg.someMessage}

Use ExternalContext.redirect()

ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
externalContext.redirect(link.trim());

and if you know the link already just use

<a href="#{someBean.someLink}">#{msg.someMessage}</a>

小草泠泠 2024-12-08 02:35:34

您可以在链接标签“a”之间创建一个 type="button" 的输入。
像这样的东西:

<a href="http://www.google.com">
    <input type="button" value="Button text" />
</a>

You can do this creating an input with type="button" between a link tag "a".
Something like this:

<a href="http://www.google.com">
    <input type="button" value="Button text" />
</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文