我有这种奇怪的情况。我有一个带有模板页面的jsf 2.0应用程序。 在标题上我有一些链接h:link以保持url bookmarkability和h:commandLink我用来登录和注销..问题是当我通过h:link导航到特定页面时 让我们说url成为bla.jsf?uName = dino然后一旦我在bla.jsf?uName = dino我点击了注销按钮,应该带我去signout.jsf不会工作。相反,它带我到bla.jsf页面没有?uName = dino。
我没有嵌套的h:表单,一切似乎都很正常。有什么建议为什么它的表现如此?
我确定你在h:commandLink上询问我是否有h:form。是的我也有。我的代码是:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:ui="http://java.sun.com/jsf/facelets">
<div class="floatRight">
<h:form id="firstFormHeader" prependId="false">
<p:autoComplete id="searchInputId" size="40" style="z-index: 20;" value="#{autoComplete.text}" completeMethod="#{autoComplete.complete}"/>
<h:commandButton value="#{label.search}" action="#{autoComplete.getSearchedVideo}" />
<p:watermark for="searchInputId" value="#{label.search}" />
</h:form>
</div>
<div style="z-index: 1;" id="topsection">
<div style="position:relative; bottom:-51px;">
<div id="menu" style="height:37px;" class="title ui-widget-header">
<h:panelGrid border="0" columns="2" style="float: left;">
<h:column>
<h:panelGrid columns="2">
<h:column>
<h:form id="secondFormHeader" prependId="false" >
<h:selectOneMenu id="videoGenereHeaderId" value="#{homePageVideoLoader.videoCategory}" required="true" onchange="submit()" valueChangeListener="#{homePageVideoLoader.getSelectedCatagoryList}">
<f:selectItem id="item0" itemLabel="#{select.category}" itemValue="" />
<f:selectItem id="item1" itemLabel="#{select.animation}" itemValue="23" />
<f:selectItem id="item2" itemLabel="#{select.autos}" itemValue="15" />
<f:selectItem id="item3" itemLabel="#{select.comedy}" itemValue="10" />
<f:selectItem id="item4" itemLabel="#{select.documentary}" itemValue="19" />
<f:selectItem id="item5" itemLabel="#{select.drama}" itemValue="4" />
<f:selectItem id="item6" itemLabel="#{select.education}" itemValue="16" />
<f:selectItem id="item7" itemLabel="#{select.hiphop}" itemValue="5" />
<f:selectItem id="item8" itemLabel="#{select.guragigna}" itemValue="12" />
<f:selectItem id="item9" itemLabel="#{select.news}" itemValue="6" />
<f:selectItem id="item10" itemLabel="#{select.oldies}" itemValue="7" />
<f:selectItem id="item11" itemLabel="#{select.reggae}" itemValue="8" />
<f:selectItem id="item12" itemLabel="#{select.harari}" itemValue="13" />
<f:selectItem id="item13" itemLabel="#{select.oromigna}}" itemValue="14" />
<!-- <f:selectItem id="item7" itemLabel="#{select.entertainment}" itemValue="ent" />
<f:selectItem id="item8" itemLabel="#{select.gaming}" itemValue="gam" />
<f:selectItem id="item9" itemLabel="#{select.health}" itemValue="hea" />
<f:selectItem id="item10" itemLabel="#{select.howto}" itemValue="how" /> -->
<f:selectItem id="item14" itemLabel="#{select.music}" itemValue="3" />
<f:selectItem id="item15" itemLabel="#{select.politics}" itemValue="18" />
<!-- <f:selectItem id="item13" itemLabel="#{select.nonprofit}" itemValue="non" />
<f:selectItem id="item14" itemLabel="#{select.blog}" itemValue="blo" />
<f:selectItem id="item15" itemLabel="#{select.animals}" itemValue="anm" />
<f:selectItem id="item16" itemLabel="#{select.science}" itemValue="sci" />
<f:selectItem id="item17" itemLabel="#{select.sport}" itemValue="spo" />
<f:selectItem id="item18" itemLabel="#{select.travel}" itemValue="tra" /> -->
</h:selectOneMenu>
</h:form>
</h:column>
<h:column>
<h:outputText rendered="#{userAuthentication.userLogged and userAuthentication.user.usersValid}" value="#{label.hello} "/>
<h:link rendered="#{userAuthentication.userLogged and userAuthentication.user.usersValid}" value="#{userAuthentication.user.usersFirst}" outcome="userhome?uName=#{userAuthentication.user.usersUname}">
</h:link>
</h:column>
</h:panelGrid>
</h:column>
</h:panelGrid>
<h:panelGrid border="0" columns="2" styleClass="menuPostion">
<h:column>
<h:link outcome="home" value="#{label.home}" /> |
<h:link outcome="upload" value="#{label.upload}" /> |
<h:form id="thridFormHeader" prependId="false" >
<h:commandLink rendered="#{userAuthentication.userLogged}" value="#{label.signout}" action="#{userAuthentication.doSignOut}" immediate="true"/>
</h:form>
<h:link rendered="#{!userAuthentication.userLogged}" value="#{label.createAccount}" outcome="registration" />
<h:outputText rendered="#{!userAuthentication.userLogged}" value=" | "/>
<h:link rendered="#{!userAuthentication.userLogged}" value="#{label.signin}" outcome="signin" />
</h:column>
<h:column>
<h:form prependId="false" id="languageForm">
<h:selectOneMenu value="#{language.localeCode}" onchange="submit()"
valueChangeListener="#{language.countryLocaleCodeChanged}">
<f:selectItems value="#{language.countriesInMap}" />
</h:selectOneMenu>
</h:form>
</h:column>
</h:panelGrid>
</div>
</div>
</div>
</ui:composition>
第二个<h:form>
是不起作用的。{/ p>
更新:抱歉无法使用。它甚至不会去doSignOut方法.. 一旦我到达页面bla.jsf?uName = dino 并查看有关它向我显示的注销链接的源代码
<form id="j_idt31" enctype="application/x-www-form-urlencoded" action="/myapp/content/bla.jsf" method="post" name="j_idt31" target="">
...
显然bla.jsf给了我错误信息,因为它正在等待uName有一个值。 为什么这样做?这是一个错误吗?
另外,您可能已经注意到我有h:selectOneMenu在值更改时将数据发送到bean,但是一旦我在bla.jsf上?uName = dino并尝试更改h的值:selectOneMenu it因为它没有工作因为某些原因没有重定向到bean所以是h:commandLink但是h:link(s)工作正常..我怎么能解决它BalusC ..非常感谢你花时间和回答方式
答案 0 :(得分:1)
<h:commandLink>
嵌套在<h:form>
内,其HTML生成的<form action>
网址默认为当前请求网址。它基本上是一个使用JavaScript提交该表单的链接。由于表单的操作默认为当前请求URL,因此您在请求URL中看不到更改。从技术上讲,它的工作非常好。
如果要在提交后更改请求网址,则需要发送重定向。您可以通过将faces-redirect=true
参数添加到结果值来执行此操作:
public String doSignOut() {
FacesContext.getCurrentInstance().getExternalContext().invalidateSession();
return "signout?faces-redirect=true";
}
或者,如果您仍然使用<navigation-case>
中的旧版faces-config.xml
,则需要添加<redirect />
条目。
答案 1 :(得分:0)
在伟大的BalusC的帮助下,我找到了解决方案。我的代码没有工作,因为它是菜单栏所以每次页面更改标题或菜单栏保持不变,这意味着表单不会被更改。
我不知道为什么而不是使用h:link我用h:commandLink和f:setPropertyActionListener的组合来发送uName,然后在服务器端我做了这个
public String goToUserHomePage(){
methodNM = CLASS_NAME+".goToUserHomePage()";
log.info("in " + methodNM);
System.out.println("in " + methodNM);
System.out.println("in " + methodNM+"-------------------------"+user.getUsersUname());
return "userhome?uName="+user.getUsersUname()+"&faces-redirect=true";
}
通过这样做每个链接是否使用h:commandLink或h:link工作正常