2016年1月7日 星期四

How do I get the Session Object in Spring?

How do I get the Session Object in Spring?

// example usage
public static HttpSession session() {
    ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
    return attr.getRequest().getSession(true); // true == allow create
}

沒有留言:

張貼留言