HttpSession的认识

Posted robin008

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpSession的认识相关的知识,希望对你有一定的参考价值。

package javax.servlet.http;

import java.util.Enumeration;

import javax.servlet.ServletContext;

public interface HttpSession {
    public long getCreationTime();
    public String getId();
    public long getLastAccessedTime();
    public ServletContext getServletContext();
    public void setMaxInactiveInterval(int interval);
    public int getMaxInactiveInterval();
    @Deprecated
    public HttpSessionContext getSessionContext();
    public Object getAttribute(String name);
    @Deprecated
    public Object getValue(String name);
    public Enumeration<String> getAttributeNames();
    @Deprecated
    public String[] getValueNames();
    public void setAttribute(String name, Object value);
    @Deprecated
    public void putValue(String name, Object value);
    public void removeAttribute(String name);
    @Deprecated
    public void removeValue(String name);
    public void invalidate();

这是HttpSesion接口的代码,去掉了注释,方法没有几个,从中看setAttribute()的方法,看完这个方法就明白了,这是cookie的翻版。有几个弃用的方法,能用的方法并不是很多。

以上是关于HttpSession的认识的主要内容,如果未能解决你的问题,请参考以下文章

怎么获取httpsession对象

Shiro:无法使 HttpSession 无效

Resin 4.0.41 中重用的 HttpSession

Restful:如何访问 Service 类中的 Httpsession?

使用websocket open怎么去拿httpsession

HttpSession getAttribute() 返回 null