We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646468e commit 2def068Copy full SHA for 2def068
org.springframework.web/src/main/java/org/springframework/web/util/FlashMap.java
@@ -28,6 +28,13 @@
28
* <p>
29
* If window management is activated, the flash map is stored within window scope to avoid concurrent tabs / windows
30
* affecting each other, it falls back to the session, if window management is not activated.
31
+ * <p>
32
+ * Typically, you will use the flash map by manually adding parameters to it before redirecting which could look like:
33
+ *
34
+ * <pre>
35
+ * FlashMap.put("paramName", paramValue);
36
+ * redirect(...);
37
+ * </pre>
38
*
39
* @author Micha Kiener
40
* @since 3.1
0 commit comments