摘要:
CREATE TABLE `table1` ( `id` int(11) DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8 DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; insert 阅读全文
摘要:
原文地址:https://www.aliyun.com/jiaocheng/292515.html 为什么和什么是 DevOps? 发布时间:2018-02-07 来源:网络 上传者:用户 关键字: 发表文章 摘要:原文地址本文内容为什么DevOps什么是DevOpsDevOps所带来的好处如何将D 阅读全文
摘要:
1.上传图片至阿里云时参数使用的parameters ,所以http的消息头中并没有添加content-type ,如果消息头中添加了Content-Type: multipart/form-data; 或者 Content-Type: multipart/form-data; boundary=W 阅读全文
摘要:
需求:向jmeter.jmx 的路径下 写日志 ; ${__BeanShell(import org.apache.jmeter.services.FileServer;FileServer.getFileServer().getBaseDir();)} ;log.info(System.getPr 阅读全文
摘要:
1.百度到很多关于jmeter put 方法的使用 ,但觉得都完全 下面我大致总结下 ; >1.放入 url 中 如:www.*****.com?a=1&b=2 ; >2.放入到parameters的值中 名称为空 ; >3.添加Content-Type :application/json 或者 a 阅读全文
摘要:
pom.xml <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.16</version> </dependency> <dependency> <groupId>org.ap 阅读全文
摘要:
需求说明:如果http的bodyData中有类似于{"idList":["6505","6506","2222".....]} 或者 {"idList":["6505"} 这种需求的 可以使用以下方法进行解决 ! 1.创建全局变量idx 2.使用正则表达式提取所有匹配的 3.使用foreach 进行 阅读全文
摘要:
首先举个例子来说: 有个文章表里面有个type字段,它存储的是文章类型,有 1头条、2推荐、3热点、4图文等等 。现在有篇文章他既是头条,又是热点,还是图文,type中以 1,3,4 的格式存储。那我们如何用sql查找所有type中有4的图文类型的文章呢?? 这就要我们的 find_in_set 出 阅读全文
摘要:
转自:http://www.servicemesh.cn/?/article/45 作者:Turgay Çelik翻译:钟毅(Drew Zhong)原文:Comparing API Gateway Performances: NGINX vs. ZUUL vs. Spring Cloud Gatew 阅读全文
摘要:
本文转自:http://www.servicemesh.cn/?/article/49 What:什么是微服务? 某百科对微服务架构的定义和阐述:微服务可以在“自己的程序”中运行,并通过“轻量级设备与 HTTP 型 API 进行沟通”。关键在于该服务可以在自己的程序中运行。通过这一点我们就可以将服务 阅读全文