zoukankan      html  css  js  c++  java
  • tomcat的整体结构

    https://blog.csdn.net/jiaomingliang/article/details/47393141

    Tomcat’s Architecture

    Tomcat’s architecture consists of a series of functional components that can be combined according to well-defined rules.

    Tomcat ArchitectureTomcat Architecture

    The structure of each server installation (via these functional components) is defined in the file server.xml, which is located in the /conf subdirectory of Tomcat’s installation folder. Let’s discuss these components in detail.

    https://howtodoinjava.com/tomcat/tomcats-architecture-and-server-xml-configuration-tutorial/

    https://www.programering.com/a/MjM4cjMwATY.html

    L'architecture de Tomcat est composée de plusieurs éléments :

    • Server
      Le serveur encapsule tout le conteneur web. Il ne peut s'exécuter qu'un seul Server dans une JVM
    • Service
      Un service regroupe des connectors et un unique engine
    • Connector
      Un connector gère les communications avec un client. Tomcat propose plusieurs connecteurs notamment Coyote pour les communications par le protocole http, JK2 pour les communications par le protocole AJP
    • Engine
      Un Engine traite les requêtes des différents Connector associés au Service : c'est le moteur de traitements des servlets.
    • Host
      Un Host est un nom de domaine dont les requêtes sont traitées par Tomcat. Un Engine peut contenir plusieurs Host.
    • Context
      Un contexte permet l'association d'une application web à un chemin unique pour un Host. Un Host peut avoir plusieurs contextes

     

    http://www.jmdoudoux.fr/java/dej/chap-tomcat.htm

  • 相关阅读:
    阿里数据中台
    智慧公安及移动执法平台(中云微迅)
    平安智慧城市的智慧政务
    数据分析师干货-业务逻辑篇
    数据分析师常用商业模型(一)
    智慧政务大数据云平台解决方案
    说几个flink好做spark却不好做的场景
    spark比flink好用的点
    干货好文!自底向上——知识图谱构建技术初探
    用户分析模型
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12085753.html
Copyright © 2011-2022 走看看