在Spring Controller中将数据缓存到session
Servlet方案
在Controller的方法的参数列表中,添加一个javax.servlet.http.HttpSession类型的形参。spring mvc会 自动把当前session对象注入这个参数,此后可以使用setAttribute(String key, Object value)将数据缓存到session,使用removeAttribute( String key)将指定的数据从session缓存中移除。
package cn.sinobest.jzpt.demo.login.web;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* 登陆相关Controller.<br>
* H - HttpSession.
* @author lijinlong
*
*/
@Controller
@RequestMapping("demo/h_login")
public class HLoginController { @RequestMapping("/login")
public String login(Model model, String username, HttpSession session) {
Logger.logger.debug("in HLoginController.login...");
String currUsername = session.getAttribute("username") == null ? null
: session.getAttribute("username").toString();
// 尝试从session中获取username数据。 boolean usernameIsNull = username == null || username.isEmpty();
boolean currunIsNull = currUsername == null || currUsername.isEmpty();
if (usernameIsNull && currunIsNull) {
return View.VIEW_LOGIN;
} if (!usernameIsNull) {
session.setAttribute("username", username);
// 将username缓存到session中。
}
return View.VIEW_LOGOUT;
} /**
* 注销.
* @param model
* @param session
* @return
*/
@RequestMapping("/logout")
public String logout(Model model, HttpSession session) {
Logger.logger.debug("in HLoginController.logout...");
session.removeAttribute("username");
// 将username从session中移除。
return View.VIEW_LOGIN;
}
}
LoginController.java
Spring方案
spring mvc提供了内嵌的支持方案:
- 将数据缓存到session
对Controller使用org.springframework.web.bind.annotation.SessionAttributes注解,可以将指定名称 或者 类型的数据,在model.addAttribute( String key, Object value)时,缓存到session中。 - 清除session中的数据
调用org.springframework.web.bind.support.SessionStatus实例的setComplete(),在方法的参数列表中声明SessionStatus类型的参数,会被自动注入。
package cn.sinobest.jzpt.demo.login.web;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.bind.support.SessionStatus;
/**
* 登陆相关Controller.<br>
* S - Spring Session.
* @author lijinlong
*
*/
@Controller
@RequestMapping("demo/s_login")
@SessionAttributes("username") // 指定了key为username的数据,会被放入session中。
public class SLoginController {
@RequestMapping("/login")
public String login(Model model, String username) {
Logger.logger.debug("in SLoginController.login...");
String currUsername = model.asMap().get("username") == null ? null
: model.asMap().get("username").toString();
// 尝试从session中获取username(spring mvc会自动把session中的数据装载到model中)。 boolean usernameIsNull = username == null || username.isEmpty();
boolean currunIsNull = currUsername == null || currUsername.isEmpty();
if (usernameIsNull && currunIsNull) {
return View.VIEW_LOGIN;
} if (!usernameIsNull) {
model.addAttribute("username", username);
// username会被放入session中(key和@SessionAttributes的参数匹配)。
}
return View.VIEW_LOGOUT;
} @RequestMapping("/logout")
public String logout(SessionStatus status,
@ModelAttribute("username") String currUsername) {
Logger.logger.debug("in SLoginController.logout...");
Logger.logger.debug("current user is:" + currUsername);
status.setComplete();
// 清除session中的attribute
return View.VIEW_LOGIN;
}
}
LoginController
SessionAttributes的使用方法
- 匹配单一的key
@SessionAttributes("username") // 匹配key=username的数据 - 匹配key数组
@SessionAttributes({"username", "password"}) // 匹配key=username或者password的数据 匹配单一类
@SessionAttributes(types=String.class) // 匹配String类型的数据- 匹配类数组
@SessionAttributes(types={String.class, List.class}) // 匹配String类型或List类型的数据 - 混合匹配
@SessionAttributes(value={"username", "password"}, types={String.class, List.class})
ModelAttribute
使用ModelAttribute,可以自动将session中指定的参数注入到方法的形参;但是如果session中没有指定的参数,会抛出异常:
org.springframework.web.HttpSessionRequiredException: Session attribute 'username' required - not found in session
Model中的数据
Spring 会把Session中的数据装载到Model中,所以使用model.asMap().get("username")可以获取 session中的数据。返回页面前,spring会把Model中的数据放入requestScope,所以在页面可以使 用${requestScope.username}来获取数据。
在Spring Controller中将数据缓存到session的更多相关文章
- 1. 处理静态资源 2. controller如何接受请求得参数 3. 如何把controller得数据保存到view. 4. 在controller如何完成重定向到指定路径 5. controller返回json数据
1. 1. 处理静态资源2. controller如何接受请求得参数3. 如何把controller得数据保存到view.4. 在controller如何完成重定向到指定路径5. controller ...
- [python]mysql数据缓存到redis中 取出时候编码问题
描述: 一个web服务,原先的业务逻辑是把mysql查询的结果缓存在redis中一个小时,加快请求的响应. 现在有个问题就是根据请求的指定的编码返回对应编码的response. 首先是要修改响应的bo ...
- 在scrapy中将数据保存到mongodb中
利用item pipeline可以实现将数据存入数据库的操作,可以创建一个关于数据库的item pipeline 需要在类属性中定义两个常量 DB_URL:数据库的URL地址 DB_NAME:数据库的 ...
- 将数据缓存到sessionStorage中
//获取侧边栏 if (sessionStorage.getItem(`${env}${empId}leftMenu`)) { const leftMenu = JSON.parse(sessionS ...
- json和xml封装数据、数据缓存到文件中
一.APP的通信格式之xml xml:扩展标记语言,可以用来标记数据,定义数据类型,是一种允许用户对自己标记语言进行定义的源语言.XML格式统一,扩平台语言,非常适合数据传输和通信,业界公认的标准. ...
- ASP.NET MVC中将数据从Controller传递到视图
ASP.NET MVC中将数据从Controller传递到视图方法 1.ViewData ViewData的类型是字典数据,key-value 如:ViewData["Data"] ...
- Spring与Hibernate集成中的Session问题
主要讨论Spring与Hibernate集成中的session问题 1.通过getSession()方法获得session进行操作 public class Test extends Hibernat ...
- Spring官网阅读(十七)Spring中的数据校验
文章目录 Java中的数据校验 Bean Validation(JSR 380) 使用示例 Spring对Bean Validation的支持 Spring中的Validator 接口定义 UML类图 ...
- Spring MVC 前后台数据交互
本文是转载文章,感觉比较好,如有侵权,请联系本人,我将及时删除. 原文网址地址:<Spring MVC 前后台数据交互> 1.服务端数据到客户端 (1)返回页面,Controller中方法 ...
随机推荐
- 数据结构:Rope-区间翻转
BZOJ1269 上一篇文章介绍了Rope的简单应用,这里多了一个操作,区间翻转 同时维护一正一反两个rope……反转即交换两个子串 下面给出代码: #include<cstdio> #i ...
- Jmeter-分布式
转载自: http://www.51testing.com/html/28/116228-247521.html 由于Jmeter本身的瓶颈,当需要模拟数以千计的并发用户时,使用单台机器模拟所有的并发 ...
- 【BZOJ4837】LRU算法 [模拟]
LRU算法 Time Limit: 6 Sec Memory Limit: 128 MB[Submit][Status][Discuss] Description 小Q同学在学习操作系统中内存管理的 ...
- 【vijos】P1659 河蟹王国
[算法]线段树 [题解]区间加上同一个数+区间查询最大值.注意和谐值可以是负数,初始化ans为负无穷大. #include<cstdio> #include<algorithm> ...
- [Unity]插件Node Editor介绍 实现类似状态机画布的扩展
Unity自带的动画状态机有一套对策划非常友好的UI.但是Unity官方没有公开这些控件的api.除了Asset Store里一些已有的方案,我在这里介绍一个在github上的开源项目,封装了底层,但 ...
- PAT L1-009 N个数求和(运用GCD进行通分)
题目链接:https://www.patest.cn/contests/gplt/L1-009 题目: 本题的要求很简单,就是求N个数字的和.麻烦的是,这些数字是以有理数“分子/分母”的形式给出的,你 ...
- 【HNOI】 lct tree-dp
[题目描述]给定2-3颗树,每个边的边权为1,解决以下独立的问题. 现在通过连接若干遍使得图为连通图,并且Σdis(x,y)最大,x,y只算一次. 每个点为黑点或者白点,现在需要删除一些边,使得图中的 ...
- 移动端测试===安卓设备共享程序-发布版本“share device”
分享一个开源的项目 share device 项目地址:https://github.com/sunshine4me/ShareDevicePublish/tree/win7-x64 首先选择对应系统 ...
- 64_g1
GAPDoc-1.5.1-12.fc26.noarch.rpm 13-Feb-2017 22:37 1082286 GAPDoc-latex-1.5.1-12.fc26.noarch.rpm 13-F ...
- FreeRADIUS + MySQL 安装配置笔记
FreeRADIUS + MySQL 安装配置笔记 https://www.2cto.com/net/201110/106597.html