我们的项目有以下要求。
点击链接
我该怎么做?
答案 0 :(得分:3)
具有<h:commandLink/>
属性的target="_blank"
怎么样:
<h:commandLink action="#{bean.action}" target="_blank" value="Open document"/>
在你的bean中:
public void action() {
try {
FacesContext.getCurrentInstance().getExternalContext()
.redirect("page2.xhtml");
} catch (IOException ex) {
// do something here
}
}
将page2.xhtml
替换为您的目标网址。