In JSF pages you can put or get value from Flash scope in the following ways
1) Put a value in using <c:set>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<c:set target="#{flash}" property="i2" value="Incept"></c:set> |
2) Put a user entered value in flash scope.
This comes in handy when we don't want to map a form field to a backing bean but still want it to make it available in the backing bean or to the next view.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h:outputText style="color: blue; font-weight: bold" value="flash.i1= "/> | |
<h:inputText id="i1" label="Input1: " value="#{flash.i1}"></h:inputText> |
3) Read/Print value from Flash Scope in JSF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h:outputText value="#{flash['i1']}"></h:outputText> | |
<h:outputText value="#{flash.keep.i2}"></h:outputText> |
3) Read/Print value from Flash Scope in Backing Bean
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public String someViewAction() { | |
System.out.println("flashExampleBean.someViewAction called"); | |
Flash fl = FacesContext.getCurrentInstance().getExternalContext().getFlash(); | |
Set flSet = fl.keySet(); | |
System.out.println("FL set size = " + flSet.size() | |
+ ", i1 value=" + fl.get("i1") | |
+ ", i2 value=" + fl.get("i2") | |
+ ", i3 value=" + fl.get("i3")); | |
return "index_1"; | |
} |
To put a new object in flash scope - fl.put("Greetings", "Hello")
Download Code