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

  • 相关阅读:
    png图片在ie不透明的解决方案
    ASP如何查询ACCESS数据库中上一周的所有记录
    使用FSO修改文件夹的名称
    两组字符串数据比较合并相同数据
    1272 并查集
    1232 并查集
    What's New in ASP.NET 4.5 and Visual Web Developer 11 Developer Preview
    knockout.js
    .net training
    Unknown server tag 'asp:ListView'. sharepoint
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12085753.html
Copyright © 2011-2022 走看看