本文整理汇总了Java中org.springframework.web.servlet.mvc.support.RedirectAttributes.getFlashAttributes方法的典型用法代码示例。如果您正苦于以下问题:Java RedirectAttributes.getFlashAttributes方法的具体用法?Java RedirectAttributes.getFlashAttributes怎么用?Java RedirectAttributes.getFlashAttributes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.web.servlet.mvc.support.RedirectAttributes
的用法示例。
在下文中一共展示了RedirectAttributes.getFlashAttributes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: notifyModal
import org.springframework.web.servlet.mvc.support.RedirectAttributes; //导入方法依赖的package包/类
@Deprecated
private void notifyModal(String title, String message, String severity, RedirectAttributes redirectAttributes) {
Map<String, ?> modelMap = redirectAttributes.getFlashAttributes();
// Mette nel flash tre array di stringhe che contengono titolo, messaggio e severity.
if (!modelMap.containsKey(KEY_NOTIFICATION_TITLE)) {
List<String> titles = new ArrayList<String>();
List<String> bodies = new ArrayList<String>();
List<String> severities = new ArrayList<String>();
redirectAttributes.addFlashAttribute(KEY_NOTIFICATION_TITLE, titles);
redirectAttributes.addFlashAttribute(KEY_NOTIFICATION_BODY, bodies);
redirectAttributes.addFlashAttribute(KEY_NOTIFICATION_SEVERITY, severities);
}
// Aggiunge i nuovi valori
((List<String>)modelMap.get(KEY_NOTIFICATION_TITLE)).add(title);
((List<String>)modelMap.get(KEY_NOTIFICATION_BODY)).add(message);
((List<String>)modelMap.get(KEY_NOTIFICATION_SEVERITY)).add(severity);
String newTotalSeverity = calcTotalSeverity(modelMap, severity);
redirectAttributes.addFlashAttribute(KEY_NOTIFICATION_TOTALSEVERITY, newTotalSeverity);
}