I would like to click a link and redirect to an external URL in a new window.
<h:commandLink value="Test" target="_blank" action="#{bean.openWindow}" />
public String openWindow() {
return "http://www.google.com";
}
But it is just not working. My browser has opened a new window. But the window is showing the same page instead of the external URL.