当前位置: 首页 > news >正文

门户和网站的区别莱州市双语网站

门户和网站的区别,莱州市双语网站,湛江网页定制,自己有网站怎么做点卡?Tomcat 如何管理 Session 我们知道#xff0c;Tomcat 中每一个 Context 容器对应一个 Web 应用#xff0c;而 Web 应用之间的 Session 应该是独立的#xff0c;因此 Session 的管理肯定是 Context 级的#xff0c;也就是一个 Context 一定关联多个 Session。 Tomcat 中主…Tomcat 如何管理 Session 我们知道Tomcat 中每一个 Context 容器对应一个 Web 应用而 Web 应用之间的 Session 应该是独立的因此 Session 的管理肯定是 Context 级的也就是一个 Context 一定关联多个 Session。 Tomcat 中主要由每个 Context 容器内的一个 Manager 对象来管理 Session。抽象实现类是 ManagerBase默认实现类为 StandardManager。 查看 org.apache.catalina.Manager 的接口(省略部分): public interface Manager {public Context getContext();public void setContext(Context context);public void add(Session session);public void changeSessionId(Session session);public void changeSessionId(Session session, String newId);public Session createEmptySession();public Session createSession(String sessionId);public Session findSession(String id) throws IOException;public Session[] findSessions();public void load() throws ClassNotFoundException, IOException;public void remove(Session session);public void remove(Session session, boolean update);public void unload() throws IOException;public void backgroundProcess(); }其中就有创建和删除 Session 的接口其中的 load 和 reload 是将 session 在存储介质中 保存/卸载。 Session 的创建 查看 Manager 的抽象实现类 org.apache.catalina.session.ManagerBase public abstract class ManagerBase extends LifecycleMBeanBase implements Manager {/*** The Context with which this Manager is associated.*/private Context context;/*** The set of currently active Sessions for this Manager, keyed by* session identifier.*/protected MapString, Session sessions new ConcurrentHashMap();}其中有两个关键属性如上所示一个是与该对象关联的 Context 对象一个是存放 session 的一个 Map。 StandardManager 继承了 ManagerBase直接复用了它的创建方法 public Session createSession(String sessionId) {// 首先判断 Session 数量是不是到了最大值最大 Session 数可以通过参数设置if ((maxActiveSessions 0) (getActiveSessions() maxActiveSessions)) {rejectedSessions;throw new TooManyActiveSessionsException(sm.getString(managerBase.createSession.ise),maxActiveSessions);}// 复用或者创建一个 session 实例Session session createEmptySession();// 初始化空 session 的属性值session.setNew(true);session.setValid(true);session.setCreationTime(System.currentTimeMillis());session.setMaxInactiveInterval(getContext().getSessionTimeout() * 60);String id sessionId;if (id null) {id generateSessionId();}// setId 将 session 保存到了 map 中session.setId(id);// 计数器加 1sessionCounter;SessionTiming timing new SessionTiming(session.getCreationTime(), 0);synchronized (sessionCreationTiming) {sessionCreationTiming.add(timing);sessionCreationTiming.poll();}return session;}查看 setId() 方法 public void setId(String id, boolean notify) {if ((this.id ! null) (manager ! null)) {manager.remove(this);}this.id id;if (manager ! null) {// 实现类里把 session put 到了 map 里manager.add(this);}// 如果需要触发创建通知if (notify) {tellNew();}}/*** 通知监听器有关新会话的信息*/public void tellNew() {// Notify interested session event listenersfireSessionEvent(Session.SESSION_CREATED_EVENT, null);// 获取 context 对象和 listener 对象Context context manager.getContext();Object listeners[] context.getApplicationLifecycleListeners();if (listeners ! null listeners.length 0) {HttpSessionEvent event new HttpSessionEvent(getSession());for (Object o : listeners) {// 判断是否是 HttpSessionListener 的实例if (!(o instanceof HttpSessionListener)) {continue;}HttpSessionListener listener (HttpSessionListener) o;try {context.fireContainerEvent(beforeSessionCreated, listener);// 其实就是这个方法我们只需要实现 HttpSessionListener 并注册 bean 就可以listener.sessionCreated(event);context.fireContainerEvent(afterSessionCreated, listener);} catch (Throwable t) {ExceptionUtils.handleThrowable(t);try {context.fireContainerEvent(afterSessionCreated, listener);} catch (Exception e) {// Ignore}manager.getContext().getLogger().error (sm.getString(standardSession.sessionEvent), t);}}}}Session 的清理 容器组件会开启一个 ContainerBackgroundProcessor 后台线程调用自己以及子容器的 backgroundProcess 进行一些后台逻辑的处理和 Lifecycle 一样这个动作也是具有传递性的也就是说子容器还会把这个动作传递给自己的子容器。 StandardContext 重写了该方法它会调用 StandardManager 的 backgroundProcess 进而完成 Session 的清理工作下面是 StandardManager 的 backgroundProcess 方法的代码 public void backgroundProcess() {// processExpiresFrequency 默认值为 6而 backgroundProcess 默认每隔 10s 调用一次也就是说除了任务执行的耗时每隔 60s 执行一次count (count 1) % processExpiresFrequency;if (count 0) // 默认每隔 60s 执行一次 Session 清理processExpires(); }/*** 单线程处理不存在线程安全问题*/ public void processExpires() {// 获取所有的 SessionSession sessions[] findSessions(); int expireHere 0 ;for (int i 0; i sessions.length; i) {// Session 的过期是在 isValid() 方法里处理的if (sessions[i]!null !sessions[i].isValid()) {expireHere;}} }既然 session 的创建会有事件通知那么 session 的清理肯定也有 查看 HttpSessionListener public interface HttpSessionListener extends EventListener {/*** Notification that a session was created.* The default implementation is a NO-OP.** param se* the notification event*/public default void sessionCreated(HttpSessionEvent se) {}/*** Notification that a session is about to be invalidated.* The default implementation is a NO-OP.** param se* the notification event*/public default void sessionDestroyed(HttpSessionEvent se) {} }这两个方法分别在 session 创建和销毁时被调用 实践 RestController RequestMapping(/path) Slf4j public class PathController {GetMapping(/test/{strs})public void testPath(PathVariable(strs) String strs, HttpServletRequest request) {HttpSession session request.getSession();log.info(接收到的strs值为:{}, strs);}}Slf4j Configuration public class SessionListener implements HttpSessionListener {Overridepublic void sessionCreated(HttpSessionEvent se) {log.info(session created);}Overridepublic void sessionDestroyed(HttpSessionEvent se) {log.info(session destroyed);} }进行 Debug curl localhost:8080/path/test/111调用栈如图 解释下调用栈 我们拿到的是一个 RequestFacade 类的对象这个对象其实是真正 request 的包装类构造器如下 public RequestFacade(Request request) {this.request request;}在包装类里我们调用了内部的 getSession()省略非关键代码最后调用了内部 request 的 getSession public HttpSession getSession() {return getSession(true);}public HttpSession getSession(boolean create) {if (SecurityUtil.isPackageProtectionEnabled()){return AccessController.doPrivileged(new GetSessionPrivilegedAction(create));} else {// 调用了内部 request 的 getSessionreturn request.getSession(create);}}在 request 的 getSession 中取到了 context 和 manager 对象开始走目录1中 session 创建的逻辑 protected Session doGetSession(boolean create) {// There cannot be a session if no context has been assigned yetContext context getContext();// Return the requested session if it exists and is validManager manager context.getManager();// Create a new session if requested and the response is not committedif (!create) {return null;}// Re-use session IDs provided by the client in very limited// circumstances.String sessionId getRequestedSessionId();// 这个方法走到了 ManagerBase 的 createSession 也就是目录1中介绍过的函数session manager.createSession(sessionId);session.access();return session;}最终进行 session 创建完成的通知 另外我们拿到的 session 其实也是一个包装类包装类的好处是对外界封闭细节避免暴露过多的内部实现防止外界进行危险操作例如这里我们假如把 session 强转为 StandardSession就会出现类型转换的错误。如下 GetMapping(/test/{strs})public void testPath(PathVariable(strs) String strs, HttpServletRequest request) {HttpSession session request.getSession();// 强转为 StandardSessionStandardSession standardSession (StandardSession) session;// 拿到 manager 对象多造几个 sessionManager manager standardSession.getManager();manager.createSession(1111);manager.createSession(2222);log.info(接收到的strs值为:{}, strs);}报错信息 参考资料 【1】https://zhuanlan.zhihu.com/p/138791035 【2】https://time.geekbang.org/column/article/109635
http://www.tj-hxxt.cn/news/219204.html

相关文章:

  • 深圳网站平台制作外贸网站建设 佛山
  • 做国外的众筹网站有哪些网站建设讠金手指 22
  • 培训机构网站php源码网站调整方案
  • 可信网站 认证规则做网页代码的素材网站
  • 学生做网站的软件哪学网页设计好
  • 网站图片切换代码自己做的网站能上传到凡科吗
  • 如室室内设计网站官网北京网站建设 降龙网
  • 网站修改标题有影响吗黄酒的电商网页设计网站
  • 西安的做网站的公司批量注册域名
  • 软件公司做网站贵州住房城乡建设厅网站
  • 如何制作公司网站免费wordpress 顶部 空白
  • 制作网站怎样找公司来帮做网页设计尺寸要缩进多少
  • 响水做网站需要多少钱常州网站建设优化
  • 做网站广告推广平台行业网站策划方案
  • 什么样的网站利于百度优化电器网站建设
  • 京东网站开发费用wordpress默认主题12
  • 服装公司网站建设方案wordpress links插件
  • 做网站是用的那个开发软件建设手机银行
  • 别人做的网站怎么打开吗重庆景点分布图
  • 17一起做网站后台wordpress ftp附件
  • 自己做网站怎么挣钱wordpress教育主题
  • 可以做推广的门户网站网站流量用完
  • 8网站免费建站网站建设和优化排名
  • 织梦网站模板如何安装教程互联网服务平台登录
  • 同学录网站开发实现基本要求wordpress 顶部公告
  • 本机做网站如何访问优品ppt模板网官网
  • 网站运营与营销济南建设厅网站安全员
  • 网站 app开发 财务做帐网站自己做推广
  • 网站制作公司教你怎么制作网站企业号官网入口
  • 电子商务网站建设合同pc建站网站