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

  • 相关阅读:
    redis介绍以及安装
    解决Django Rest Framework中的跨域问题
    DRF之解析器组件及序列化组件
    DRF之REST规范介绍及View请求流程分析
    Vue汇总(搬砖)
    Django的Serializers的使用
    模板自定义标签和过滤器
    sencha touch 2.3.1 list emptyText不显示
    Cordova 3.3 开发环境搭建(视频)
    sencha touch 开发环境搭建(视频)
  • 原文地址:https://www.cnblogs.com/feng9exe/p/12085753.html
Copyright © 2011-2022 走看看