| 关键字和定义 | 
|  
     
     Web Server
      
    
     它是一个处理HTTP协议的接口。它的目标是将 HTTP 请求转换到应用服务器,以便它们得到响应。
       |  
  
|  
     
     Application
      
    
     它是一个收集信息的软件。
       |  
  
|  
     
     Application server
      
    
     它是承载一个或多个应用的组件
       |  
  
|  
     
     Web application server
      
    
     是Web服务器和应用服务器的结合。
       |  
  
import cherrypy class demoExample: def index(self): return "Hello World!!!" index.exposed = true cherrypy.quickstart(demoExample())

        
    
    
