上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页
摘要: idea 配置 ctrl+shift+alt+/ ->registry spring-boot项目热部署spring-devtools导致同类不能转换 方案零(也不推荐,兼容devtools热部署,部分接口还是会报错) 方案一(没实践成功,暂不考虑)、解决方案就是在resources目录下面创建ME 阅读全文
posted @ 2018-08-25 19:57 zipon 阅读(329) 评论(0) 推荐(1) 编辑
摘要: 1.接口返回信息 使用jmeter插件的<聚合报告>统计接口的请求数、响应时间、平均响应时间、TPS、错误率等指标 2.服务器负载 使用jmeter插件<PerfMon Metrics Collector>统计服务器cpu、内存、硬盘IO、网络IO的趋势图 3.jvm性能指标 a.) jmap -h 阅读全文
posted @ 2018-08-10 18:25 zipon 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 1.最大连接数监控 2.死锁或者阻塞监控 3.慢查询配置 阅读全文
posted @ 2018-08-05 01:05 zipon 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: JENKINS_HOME: C:\Documents and Settings\AAA\.jenkins /root/.jenkins jenkins迁移只需要备份JENKINS_HOME的内容即可 。 阅读全文
posted @ 2018-07-13 18:08 zipon 阅读(2090) 评论(0) 推荐(0) 编辑
摘要: import random import itchat def randomRed(): red = [] while len(red)!=6: redtemp = random.randint(1,33) if redtemp not in red: red.append(redtemp) else:... 阅读全文
posted @ 2018-06-06 19:32 zipon 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 将该方法放在根目录下面,在其他类中直接import 该方法。 阅读全文
posted @ 2018-06-05 19:38 zipon 阅读(3781) 评论(0) 推荐(0) 编辑
摘要: #! /usr/bin/env python # coding=GBK import logging, os class Logger: def __init__(self, path, clevel=logging.DEBUG, Flevel=logging.DEBUG): self.logger = logging.getLogger(path) ... 阅读全文
posted @ 2018-06-04 14:50 zipon 阅读(262) 评论(0) 推荐(0) 编辑
摘要: # coding=utf8 import requests from common.logger import Logger import logging class httpUtils: logger = Logger("../logs/http.log",logging.INFO,logging.INFO) def get(self,url,params={},header... 阅读全文
posted @ 2018-06-04 14:49 zipon 阅读(1623) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2018-05-30 15:11 zipon 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 默认下载2.35版本,放置到/usr/local/bin 阅读全文
posted @ 2018-05-19 09:53 zipon 阅读(474) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页