使用h:commandLink在新窗口中打开外部URL

时间:2015-08-04 01:50:31

标签: jsf redirect commandlink new-window external-url

我想点击链接并在新窗口中重定向到外部网址。

<h:commandLink value="Test" target="_blank" action="#{bean.openWindow}" />   
public String openWindow() {
    return "http://www.google.com";
}

但它只是不起作用。我的浏览器打开了一个新窗口。但是窗口显示的是同一页面,而不是外部URL。

0 个答案:

没有答案