我在Mojarra上遇到了JSF 2.4的奇怪行为。 我使用flash参数从一个页面传递到另一个页面。 每次我到达新页面时,我都会在Postconstruct annoted方法中检索我的flash参数。 然后,如果刷新页面,则用户将重定向到另一个页面。 (因为刷新后闪存参数会被删除)。
对于相同的代码,如果我从不同的数据(硬编码或数据库查询)填充我的selectItems,我会遇到此错误:
JSF1095:当我们尝试为flash设置传出cookie时,响应已经提交。存储在闪存中的任何值在下一个请求中都不可用。
我喜欢骑这个,也许与此有关:
facesContext.responseComplete();
facesContext.renderResponse()
我不明白如何使用它们。
我读到了2:
<h:selectOneMenu id ="loc" value="#{participantController.localisation}"
validatorMessage="Vous devez renseigner la localisation." >
<f:selectItems value="#{participantController.locFeaturesList}"
var="locFeature" itemLabel="#{locFeature.locName}"
itemValue="#{locFeature.locName}" />
</h:selectOneMenu>
我的列表对象:
public static class LocFeatures{
public String locName;
public String codeName;
public LocFeatures(String locName, String codeName){
this.locName = locName;
this.codeName = codeName;
}
public String getLocName(){
return locName;
}
public String getCodeName(){
return codeName;
}
}
将数据放入我的列表对象中:
public LocFeatures[] loadLocalisationpAdicapCodeAssociativeMenu() {
List <Static> loc2Code = staticBo.get(STATIC_CATEGORY_PARTICIPANT_LOCALISATION_CODE);
locFeaturesList = new LocFeatures[loc2Code.size()+1];
// if I populate my list with only some values no errors will be thrown but it doesn't work when i populate it by a big database request
//locFeaturesList = new LocFeatures[1];
locFeaturesList[0] = new LocFeatures("-----",null); // Associations Classe - Name
int indice = 1;
for (Static assocation : loc2Code) {
locFeaturesList[indice] = new LocFeatures(assocation.getKey(),assocation.getValue()); // Associations Classe - Name
indice ++;
}
return locFeaturesList;
}
我的@PostConstruct方法:
@PostConstruct
public void setFlashParam() {
//locFeaturesList = loadLocalisationpAdicapCodeAssociativeMenu();
FacesContext facesContext = FacesContext.getCurrentInstance();
String studyNameFlashed = (String) facesContext.getExternalContext().getFlash().get("study_name");
// Gere un refresh qui ferait disparaitre le type de l'étude.
if (studyNameFlashed == null) {
try { ExternalContext ec = facesContext.getExternalContext(); ec.redirect(ec.getRequestContextPath() + "/Accueil"); } catch (IOException e) {e.printStackTrace();}
return;
}
return;
}
答案 0 :(得分:1)
请务必使用Mojarra最新版本与Flash配合使用。在您的情况下,尝试将其更新为2.2.6。正如在这里的几篇文章中所述,Mojarra实现中的闪存范围存在很多问题。但是,似乎他们已经解决了这个问题。请参阅此answer(BTW解释了如何正确使用上下文)。
另见: