Spring MVC中Controller代码中如何获取Session信息呢?
Session用于标识页面的请求对象,那么Spring MVC中Controller中如何获取Session,
下文将一一道来,如下所示:
使用springMVC框架时,怎样在controller里获得Session
实现思路:
使用HttpSession对象获取Session信息
使用HttpServletRequest 即可获取Session信息
public static HttpSession getSession() {
HttpSession session = null;
try {
session = getRequest().getSession();
} catch (Exception e) {}
return session;
}
public static HttpServletRequest getRequest() {
ServletRequestAttributes attrs = (ServletRequestAttributes) RequestContextHolder
.getRequestAttributes();
return attrs.getRequest();
}
下文将一一道来,如下所示:
使用springMVC框架时,怎样在controller里获得Session
实现思路:
使用HttpSession对象获取Session信息
使用HttpServletRequest 即可获取Session信息
public static HttpSession getSession() {
HttpSession session = null;
try {
session = getRequest().getSession();
} catch (Exception e) {}
return session;
}
public static HttpServletRequest getRequest() {
ServletRequestAttributes attrs = (ServletRequestAttributes) RequestContextHolder
.getRequestAttributes();
return attrs.getRequest();
}
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。