上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: import re s = ''' {"type":"buy","order_no":"2020061613141386691649969"} ''' ret = re.search(r'"type":"(.*?)"', s) print(ret.group()) print(ret.group(0 阅读全文
posted @ 2020-07-02 14:32 wujf 阅读(381) 评论(0) 推荐(0) 编辑
摘要: import json from Db import Db db = Db() ''' 参考配置文件 { "file": "test.json", "path": "data", "table": "tk_bill", "comitcount": 50, "map": { "trade_id": " 阅读全文
posted @ 2020-06-06 17:48 wujf 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: { "file": "OrderDetail-2020-06-03.xls", "startRow": 1, "table": "tk_bill", "comitcount":50, "map": { "trade_id": "o", "tk_status": "p", "item_title": 阅读全文
posted @ 2020-06-06 14:35 wujf 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 1、top查看消耗cpu高的java程序进程2、ps -mp 【替换为进程ID PID】 -o THREAD,tid,time3、printf "%x" 114134、stack 【进程ID PID】 | grep 【线程ID十六进制】 -A 10 -B 10 阅读全文
posted @ 2020-05-28 11:48 wujf 阅读(157) 评论(0) 推荐(0) 编辑
摘要: package com.xf.config; import java.util.Date; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org. 阅读全文
posted @ 2020-05-26 13:53 wujf 阅读(1824) 评论(0) 推荐(1) 编辑
摘要: https://www.cnblogs.com/cheyunhua/p/10670070.html 阅读全文
posted @ 2020-05-06 15:09 wujf 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/c770c1e97531 tomcat8 性能优化参考 阅读全文
posted @ 2020-05-06 15:06 wujf 阅读(137) 评论(0) 推荐(0) 编辑
摘要: poi导入的字符串空格ASCll值:160,而空格(Space)的ASCII码值是:32 阅读全文
posted @ 2019-09-01 16:53 wujf 阅读(343) 评论(0) 推荐(0) 编辑
摘要: location /saleapi/ { ## 指定HOST proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded- 阅读全文
posted @ 2019-08-27 19:51 wujf 阅读(900) 评论(0) 推荐(0) 编辑
摘要: package com.xf.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import com.google.common.base.Function; import com.google.com... 阅读全文
posted @ 2019-07-16 11:24 wujf 阅读(5775) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页