詳解SpringBoot中@SessionAttributes的使用
簡介
說明
本文介紹SpringBoot中@SessionAttributes的用法。
概述
在默認情況下,ModelMap中的屬性作用域是request級別,也就是說,當本次請求結束後,ModelMap 中的屬性將銷毀。如果希望在多個請求中共享ModelMap中的屬性,必須將其屬性轉存到session 中,這樣 ModelMap 的屬性才可以被跨請求訪問。
Spring 允許我們有選擇地指定 ModelMap 中的哪些屬性需要轉存到 session 中,以便下一個請求屬對應的 ModelMap 的屬性列表中還能訪問到這些屬性。這一功能是通過類定義處標註 @SessionAttributes 註解來實現的。
代碼
後端代碼
Controller
@Controller @RequestMapping("/anno") @SessionAttributes(value={"msg"}) // 把Mapmodel中名字為msg的屬性存入到session屬性列表中 public class AnnoController { @RequestMapping(value="/testSessionAttributes") public String testSessionAttributes(Model model){ System.out.println("testSessionAttributes..."); // 底層會存儲到request域對象中 model.addAttribute("msg","testSessionAttributes"); return "success"; } @RequestMapping(value="/getSessionAttributes") public String getSessionAttributes(ModelMap modelMap){ System.out.println("getSessionAttributes..."); String msg = (String) modelMap.get("msg"); System.out.println(msg); return "success"; } @RequestMapping(value="/delSessionAttributes") public String delSessionAttributes(SessionStatus status){ status.setComplete();//刪除session域中的存入的數據 return "success"; } }
前端代碼
success.html
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <html> <head> <title>Title</title> </head> <body> <h3>入門成功</h3> ${ msg } ${sessionScope} </body> </html>
測試
測試1
訪問:http://localhost:8080/anno/testSessionAttributes/
前端
測試2
訪問:http://localhost:8080/anno/getSessionAttributes/
後端打印
getSessionAttributes…
testSessionAttributes
測試3
訪問:http://localhost:8080/anno/getSessionAttributes/
測試4
再次訪問:http://localhost:8080/anno/getSessionAttributes/
後端打印
getSessionAttributes…
null
前端
到此這篇關於詳解SpringBoot中@SessionAttributes的使用的文章就介紹到這瞭,更多相關SpringBoot @SessionAttributes內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- SpringMVC處理數據輸出的實例代碼
- SpringMVC域對象共享數據示例詳解
- Spring MVC數據響應處理詳解
- SpringMVC 域對象共享數據的實現示例
- SpringMVC數據輸出相關知識總結