getsession方法(session的常用方法和request,ServletContext的区别)
本文目录
- session的常用方法和request,ServletContext的区别
- java问题 HibernateSessionFactory里面的getSession()方法获取不到Session
- 获取Session的方法getSession() 与 getSession(boolean para)区别是什么
- Session的常用方法有哪些
- 在Java中,request怎样取得session中的值
- hibernate里getSession()方法是抽象方法如何获取session的
session的常用方法和request,ServletContext的区别
首先说一下session是如何使用的。其实很简单,第一步是要获取到session对象,然后第二部就是对数据添加、删除、获取操作了。这里先说说session的寿命问题,session的寿命是可以在web.xml当中设置的,单位是分钟。比如如果寿命是120分钟,那么当同一个客户在上一次访问以后120分钟内没有再次访问的话session就会被注销,也就是说如果在120分钟内访问过了的话,那么就再延续120分钟。获取session:因为session是由服务器自动管理的,因此session的获取不可以直接new,而是要通过request或者servletcontext的方法获得,一般是:HttpSession session=request.getSession();这样就拿到session了。我们知道不同的客户端有自己的session,这个没有影响,只要通过上面的方法我们就可以获取到当前访问的request的session。使用session:session的使用类似于使用Map,是以key-value形式存储数据的。主要方法是这几个:setAttribute(String name, Object value)、getAttribute(String name)、removeAttribute(String name)这三个方法分别是添加(修改)值、获取值、删除值。还有一个方法:invalidate() 用来注销该用户的session,注销以后下次该用户发出request的时候会获得一个新的session。接下来列出HttpSession的所有方法:由于英语能力有限因此保留英文解释。 Object getAttribute(String name) Returns the object bound with the specified name in this session, or null if no object is bound under the name. 获取以name为key的属性值,返回值是object Enumeration getAttributeNames() Returns an Enumeration of String objects containing the names of all the objects bound to this session. 获取一个包含有所有key的迭代器对象 long getCreationTime() Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT. 获取这个session的创建时间,返回值是一个long,GMT时间 String getId() Returns a string containing the unique identifier assigned to this session. 获取这个session的jsessionid long getLastAccessedTime() Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT, and marked by the time the container received the request. 获取上一次该客户访问的时间。返回值是一个long,GMT时间 int getMaxInactiveInterval() Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses. 获取session寿命的最大值。返回值是一个int,单位是秒。 ServletContext getServletContext() Returns the ServletContext to which this session belongs. 获取这个项目的ServletContext对象。 HttpSessionContext getSessionContext() Deprecated. As of Version 2.1, this method is deprecated and has no replacement. It will be removed in a future version of the Java Servlet API. 这个方法已经被淘汰了。 Object getValue(String name) Deprecated. As of Version 2.2, this method is replaced by getAttribute(java.lang.String). 这个方法已经被getAttribute方法代替了。 String getValueNames() Deprecated. As of Version 2.2, this method is replaced by getAttributeNames() 这个方法已经被getAttributeNames()方法代替了。 void invalidate() Invalidates this session then unbinds any objects bound to it. 注销这个session。 boolean isNew() Returns true if the client does not yet know about the session or if the client chooses not to join the session. 当客户端还不知道这个session的id或者客户端不适用session的时候返回true一般发生在客户端第一次访问的时候。 void putValue(String name, Object value) Deprecated. As of Version 2.2, this method is replaced by setAttribute(java.lang.String, java.lang.Object) 这个方法已经被setAttribute代替了 void removeAttribute(String name) Removes the object bound with the specified name from this session. 删除以name为key的值。 void removeValue(String name) Deprecated. As of Version 2.2, this method is replaced by removeAttribute(java.lang.String) 这个方法已经被removeAttribute方法代替了。 void setAttribute(String name, Object value) Binds an object to this session, using the name specified. 在session当中添加一个以name为key以value为值的一组数据。 void setMaxInactiveInterval(int interval) Specifies the time, in seconds, between client requests before the servlet container will invalidate this session. 设置当前session的寿命,单位是秒。现在说说session、request、和ServletContext的区别。session、request、和ServletContext(也叫做application)都是用来保存并且传递数据的。三者不同的地方主要在于作用范围和生命周期。session的生命周期时间一般是在web.xml当中设置。request的生命周期是一次访问。也就是说客户端的一次对服务器的访问会发出一个request,那么这个request持续到服务器程序对这个request全部处理完成。ServletContext的生命周期是这个应用的全程。也就是说从服务器应用启动开始ServletContext被加载起来,然后直到服务器关闭的时候销毁。这里的应用可以理解为开发时候的工程,也就是说一个工程有且只有一个ServletContext。从作用范围来说,session的作用范围是针对一个客户端,session对象和客户端是一一对应的。request的作用范围是一个客户端的一次请求。ServletContext的作用范围是服务器启动全程,并且针对所有的客户端。综上所述,一个客户端在session的生命周期内访问服务器端的时候每次获取的session都是同一个。而一个客户端在一次请求访问服务器的时候,无论这次访问涉及到了多少servlet和jsp,其中的request对象都是同一个。无论多少个客户端访问服务器同一个应用,这个服务器应用在处理数据的时候ServletContext全是同一个对象。
java问题 HibernateSessionFactory里面的getSession()方法获取不到Session
如果当前没有session的话,肯定就获取不到的,并且这个getSession只能是获取存在的session,不能创建。所以可以通过openSession或getCurrentSession方法来进行session获取。1. 前者打开一个新的,后者当前有session的话,则是使用当前的session,没有的话则创建一个新的;2. 如果使用前者获得一个session的话,需要手动关闭session,使用后者,当事务提交,session会自动关闭,如果再关闭session则会报如下异常:Session has already closed;
获取Session的方法getSession() 与 getSession(boolean para)区别是什么
楼主,你应该关注一下API,里面讲解得很清楚:1、HttpSession getSession() Returns the current session associated with this request, or if the request does not have a session, creates one(返回与request请求相关的当前session,如果该request还没有session,则新创建一个session)2、HttpSession getSession(boolean create) Returns the current HttpSession associated with this request or, if if there is no current session and create is true, returns a new session. If create is false and the request has no valid HttpSession, this method returns null. (返回当前reqeust中的HttpSession ,如果当前reqeust没有session 时,当create为true,就创建一个新的Session,否则直接返回null)参数说明:Parameters: true - to create a new session for this request if necessary; false to return null if there’s no current session 需要注意的地方是request.getSession() 等同于 request.getSession(true),除非我们确认session一定存在或者sesson不存在时明确有创建session的需要,否则尽量使用request.getSession(false)。通常在action中检查某个变量/标记是否存放在session中。这个场景中可能出现没有session存在的情况,正常的判断应该是这样:HttpSession session = request.getSession(false); if (session != null) { String username = session.getAttribute(“username“); } 如果项目中用到了Spring,对session的操作就方便多了。如果需要在Session中取值,可以用WebUtils这个工具类上面的代码就可以写成:String username = WebUtils.getSessionAttribute(reqeust, “username“);楼主明白了么,多看看源码吧~~
Session的常用方法有哪些
session的常用方法。void setAttribute(String attribute, Object value) 设置Session属性。value参数可以为任何Java Object。通常为Java Bean。value信息不宜过大String getAttribute(String attribute) 返回Session属性Enumeration getAttributeNames() 返回Session中存在的属性名void removeAttribute(String attribute) 移除Session属性String getId() 返回Session的ID。该ID由服务器自动创建,不会重复long getCreationTime() 返回Session的创建日期。返回类型为long,常被转化为Date类型,例如:Date createTime = new Date(session.getCreationTime())long getLastAccessedTime() 返回Session的最后活跃时间。返回类型为longint getMaxInactiveInterval() 返回Session的超时时间。单位为秒。超过该时间没有访问,服务器认为该Session失效void setMaxInactiveInterval(int second) 设置Session的超时时间。单位为秒void putValue(String attribute, Object value) 不推荐的方法。已经被setAttribute(String attribute, Object Value)替代Object getValue(String attribute) 不被推荐的方法。已经被getAttribute(String attr)替代
在Java中,request怎样取得session中的值
使用request.getSession()方法获取Session, 本方法是从当前request中获取session,如果获取不到session,则会自动创建一个session,并返回新创建的session;如果获取到,则返回获取到的session; 获取到session后可以使用getAttribute(“《属性名》”)来获取具体的session中的值,下面的代码是将Session中的所有值都遍历出来
Enumeration enumeration =request.getSession.getAttributeNames();while(enumeration.hasMoreElements()){String AddFileName=enumeration.nextElement().toString();//获取session中的键值String value=(String)session.getAttribute(AddFileName);//根据键值取出session中的值FileName+=value+“@“;System.out.println(FileName);}
拓展知识
Session是另一种记录客户状态的机制,不同的是Cookie保存在客户端浏览器中,而Session保存在服务器上。客户端浏览器访问服务器的时候,服务器把客户端信息以某种形式记录在服务器上。这就是Session。客户端浏览器再次访问时只需要从该Session中查找该客户的状态就可以了。
Cookie技术是客户端的解决方案,Cookie就是由服务器发给客户端的特殊信息,而这些信息以文本文件的方式存放在客户端,然后客户端每次向服务器发送请求的时候都会带上这些特殊的信息。让我们说得更具体一些:当用户使用浏览器访问一个支持Cookie的网站的时候,用户会提供包括用户名在内的个人信息并且提交至服务器。
session的实现原理如下如所示
hibernate里getSession()方法是抽象方法如何获取session的
Session:是应用程序与数据库之间的一个会话,是Hibernate运作的中心,持久层操作的基础。对象的生命周期、事务的管理、数据库的存取都与Session息息相关. Session对象是通过SessionFactory构建的,Hibernate有两种获取session的方式 1、getCurrentSession()获得与当前线程绑定的sessionpackage com.deptsystem.util; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; /** * Hibernate的帮助类,用来获取Session * */ public class HibernateUtil { //将sessionFactory设为静态,可以保证其整个应用程序中的唯一性 private static final SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory(); private HibernateUtil(){}; //将构造方法设为似有,只能使用“类名+静态方法”的方式调用 /** * 获取Session工厂 * @return SessionFactory */ public static SessionFactory getSessionFactory(){ return sessionFactory; } /** * 获取Session * @return Session */ public static Session getSession(){ return sessionFactory.getCurrentSession(); } 测试类部分代码:public static void main(String args) { Session session = HibernateUtil.getSession();//获取session session.beginTransaction();//开始事务 User user = (User) session.get(User.class, 1); System.out.println(user.getName()); session.getTransaction().commit();//事务提交 session.close();}2、openSession()打开一个新sessionpackage com.deptsystem.util; import org.hibernate.Session;//hibernate3的 import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; /** * Hibernate的帮助类,用来获取Session * */ public class HibernateUtils { private static SessionFactory factory; static{ try{ //读取hibernate.cfg.xml文件 Configuration cfg=new Configuration().configure(); //建立SessionFactory factory=cfg.buildSessionFactory(); }catch(Exception e){ e.printStackTrace(); } } //获得开启着的Session public static Session getSession(){ return factory.openSession(); } //关闭Session public static void closeSession(Session session){ if(session!=null){ if(session.isOpen()){ session.close(); } } } public static SessionFactory getSessionFactory(){ return factory; } }测试类部分代码:public static void main(String args) { Session session = HibernateUtil.getSession();//获取session session.beginTransaction();//开始事务 User user = (User) session.get(User.class, 1); System.out.println(user.getName()); session.getTransaction().commit();//事务提交 session.close();}3、使用注意事项 1)openSession和getCurrentSession的区别 openSession必须关闭,currentSession在事务结束后自动关闭 openSession没有和当前线程绑定,currentSession和当前线程绑定 2)如果使用currentSession需要在hibernate.cfg.xml文件中进行配置: a、如果是本地事务(jdbc事务) 《propertyname=“hibernate.current_session_context_class“》thread《/property》 b、如果是全局事务(jta事务) 《propertyname=“hibernate.current_session_context_class“》jta《/property》 全局事务:资源管理器管理和协调的事务,可以跨越多个数据库和进程。资源管理器一般使用XA 二阶段提交协议与“企业信息系统”(EIS) 或数据库进行交互。 本地事务:在单个 EIS或数据库的本地并且限制在单个进程内的事务。本地事务不涉及多个数据来源。
更多文章:

mapviewoffile(怎么解决MapViewOfFile err)
2025年3月9日 18:30

免费建站源码精品源码(哪里有免费建站最好的源代码如题 谢谢了)
2025年2月15日 03:50

M语言的Microsoft的M语言?m语言与java语言的区别
2025年3月15日 14:20

attributes add(vb+asp.net中的attributes.add)
2025年2月13日 15:50

shell编程可以干什么(Linux系统工程师主要干的什么工作)
2025年3月14日 17:50

udp协议的功能(在TCP/IP协议中,UDP协议是一种( )协议A.互联层 B.传输层 C.应用层 D.表示层)
2025年3月15日 06:00

vant组件库(Vant cdn模式引入的样式和js 怎么把Vant组件的px 转为rem 适配移动端)
2025年2月13日 20:30