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

(四)Tomcat源码阅读:Service组件分析

一、概述

这介绍中表达的比较有价值的信息是各个service是相互隔离的,但是又共享jvm的一些基础类。

/**
 * A <strong>Service</strong> is a group of one or more
 * <strong>Connectors</strong> that share a single <strong>Container</strong>
 * to process their incoming requests.  This arrangement allows, for example,
 * a non-SSL and SSL connector to share the same population of web apps.
 * <p>
 * A given JVM can contain any number of Service instances; however, they are
 * completely independent of each other and share only the basic JVM facilities
 * and classes on the system class path.
 *
 * @author Craig R. McClanahan
 */

二、阅读源码

Service中的组件其实和Server中的组件大差不差,我这里重点介绍Service广播事件的一个方法。

 其中的顺序大概是这样的:StandardService调用PropertyChangeSupport的广播方法,然后利用PropertyChangeEvent传参完成事件广播。其中比较重要的就是PropertyChangeSupport类,我接下会介绍它的广播方法。

1、PropertyChangeSupport

//用来装监听器的map
private PropertyChangeListenerMap map = new PropertyChangeListenerMap();


    public void firePropertyChange(PropertyChangeEvent event) {
        Object oldValue = event.getOldValue();
        Object newValue = event.getNewValue();

        //进行条件判断,判断通过则进入下一步
        if (oldValue == null || newValue == null || !oldValue.equals(newValue)) {
            String name = event.getPropertyName();

            //拿到通用监听器
            PropertyChangeListener[] common = this.map.get(null);
            //拿到指定监听器
            PropertyChangeListener[] named = (name != null)
                        ? this.map.get(name)
                        : null;


            //分别进行广播
            fire(common, event);
            fire(named, event);
        }
    }



//这是最后执行广播的方法就是调用了监听器,把事件变化发送出去
  private static void fire(PropertyChangeListener[] listeners, PropertyChangeEvent event) {
        if (listeners != null) {
            for (PropertyChangeListener listener : listeners) {
                listener.propertyChange(event);
            }
        }
    }


http://www.kler.cn/a/4473.html

相关文章:

  • leetcode 面试经典 150 题:快乐数
  • 单片机的原理及其应用:从入门到进阶的全方位指南
  • Unity3D实现WEBGL打开Window文件对话框打开/上传文件
  • 【ROS2】数据记录(ros2 bag)详解
  • 【2024年华为OD机试】(C卷,100分)- 分割均衡字符串 (Java JS PythonC/C++)
  • Anaconda安装(2024最新版)
  • 垃圾回收机制——把我回收了吧
  • 我的黑苹果安装经验
  • 深入浅出Java线程池Worker类
  • Java Web的三种获取参数的方法
  • Linux部署Docker
  • 分组函数·union·limit·order by排序·group by分组·外键
  • 面试字节跳动软件测试岗,收到offer后我却毫不犹豫拒绝了....
  • day15-面向对象作业2
  • 常用的 IntelliJ IDEA 快捷键
  • Element Plus 实例详解(三)___Date Picker 日期选择
  • 大数据应用——Hadoop运行模式(本地运行)
  • nacos入门
  • SpringBatch-Demo1
  • 多线程的几种状态
  • 2023最新版360度无死角python学习路线
  • Python提取文本文件中某个位置的数据
  • 简化代码,提高效率:C++ auto关键字的魅力
  • 短信宝接入发送短信实测 Java
  • 【操作系统】一文带你深入浅出零拷贝技术
  • Apache POI 入门·第一话