创建web站点(单例模式)
2018-06-18 00:39:10来源:未知 阅读 ()
在python2.7下运行。
#!usr/bin/env python # -*- coding:utf-8 -*- from wsgiref.simple_server import make_server
插入单例模式,创建私有类型变量。其中静态方法 get_instance 为单例模式,
1 class ConnectionPool: 2 3 __instance = None 4 5 def __init__(self): 6 pass 7 8 @staticmethod 9 def get_instance(): 10 if ConnectionPool.__instance: 11 return ConnectionPool.__instance 12 else: 13 ConnectionPool.__instance = ConnectionPool() 14 return ConnectionPool.__instance 15 16 def get_connection(self): 17 import random 18 r = random.randrange(1,11) 19 return r
def index(): p = ConnectionPool.get_instance() # 访问web时主动调用单例模式 get_instance Con = p.get_connection() print(p) # 每次在内存中都是同一个对象 return "INDEX" + str(Con)
RunServer
def RunServer(environ, start_response): start_response(status='200 0k', headers=[('Content-Type', 'text/html')]) url = environ['PATH_INFO'] if url.endswith('index'): ret = index() return ret else: return '404' if __name__ == '__main__': httpd = make_server('', 8008, RunServer) print('Serving HTTP on port 8008....') httpd.serve_forever()
2018-01-16 23:14:08
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 网络编程相关知识点 2019-08-13
- 浅谈 Web框架 2019-08-13
- 链接 Mysql 创建 数据库和创表,增加数据 2019-08-13
- Python数据基础类型-列表 2019-08-13
- Python3字典排序 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash