h:commandbutton,如何重定向到外部站点?(JSF 2)
当我使用命令按钮重定向到项目中的页面时,您只需提供不带扩展名的页面名称,然后在操作属性中添加 ?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
ExternalContext.redirect( )
如果您已经知道该链接,只需使用
#{msg.someMessage}
Use
ExternalContext.redirect()
and if you know the link already just use
<a href="#{someBean.someLink}">#{msg.someMessage}</a>
您可以在链接标签“a”之间创建一个 type="button" 的输入。
像这样的东西:
You can do this creating an input with type="button" between a link tag "a".
Something like this: