上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: import org.junit.runner.RunWith; import cucumber.api.CucumberOptions; import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions( m 阅读全文
posted @ 2018-11-22 09:08 xiaodebing 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 2018-11-21 19:43:12.076 WARN 5392 [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling 阅读全文
posted @ 2018-11-21 19:48 xiaodebing 阅读(2762) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://blog.csdn.net/weixin_42108952/article/details/80153402 阅读全文
posted @ 2018-11-18 13:27 xiaodebing 阅读(1628) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import requests import logging import logging.config import random import os import yaml import time import threading import re impo 阅读全文
posted @ 2018-11-14 20:39 xiaodebing 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html oracle驱动先去官网下载,下载下来后,需要安装到maven本地仓库,然后再pom中添加依赖. 1下载oracle驱动包 2 阅读全文
posted @ 2018-11-12 19:30 xiaodebing 阅读(10076) 评论(0) 推荐(0) 编辑
摘要: ${__groovy(vars.get("pboc_req_record_counter_1") == "Invalid" || vars.get("pboc_req_record_counter_1").toInteger() <1,)} 字符串分割 ${__groovy(vars.get("id 阅读全文
posted @ 2018-11-12 17:51 xiaodebing 阅读(215) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import requests import time from Crypto.Cipher import AES import base64 import hashlib import json from queue import Queue import th 阅读全文
posted @ 2018-10-31 16:24 xiaodebing 阅读(418) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import csv d1 = {'banana':3,'apple':4,'pear':1,'orange':2} d2 = {'banana':3,'orange':2} d3 = {} d4 = {'apple':4,'banana':3,'pear':1,'orange':2} headers = ['banana', 'apple','pear' 阅读全文
posted @ 2018-10-31 13:45 xiaodebing 阅读(5926) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import csv import collections d = {'banana':3,'apple':4,'pear':1,'orange':2} print(d) kd = collections.OrderedDict(sorted(d.items(),key = lambda t:t[0])) print('key order') print(k... 阅读全文
posted @ 2018-10-31 11:57 xiaodebing 阅读(1396) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import xlrd import os import yaml import logging.config from Crypto.Cipher import AES import base64 def setup_logging(default_path = "log_config.yaml",default_level = logging.INFO,... 阅读全文
posted @ 2018-10-31 09:02 xiaodebing 阅读(1401) 评论(2) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页