
踩坑
文章平均质量分 64
mmdxgj
这个作者很懒,什么都没留下…
展开
-
HttpRunner 安装
目的:做接口自动化测试前置条件:Python3.7,Windows具体安装步骤:1.pip install httprunnercmd直接键入上面的命令,如果你需要更新到最新版本,只需要 -U 参数就可以了,命令如下:pip install -U HttpRunner需要先检验是否安装了pip,如果安装的是python3.4版本以上的,就不需要重新安装 ;否则你只需要在你安装的...原创 2018-09-29 19:35:03 · 7443 阅读 · 4 评论 -
Git clone远程克隆仓库出现Permission denied
工具:Git Bash+Windows1.问题描述:git bash切换到本地工作路径,git clone 后提示Permission denied 2.问题解决:百度千篇一律的Permission denied(publickey)错误,参考教程https://www.cnblogs.com/wobuyayi/p/6432123.html ,删除原有公钥并在账户中添加新的pu...原创 2019-02-16 18:50:48 · 1756 阅读 · 0 评论 -
jmeter报错An error occured:Unknown arg
参考博客:https://blog.youkuaiyun.com/weixin_38889523/article/details/77097701jmx文件路径不能包含中文和空格转载 2019-03-28 15:04:35 · 3115 阅读 · 0 评论 -
FileInputStream读取远程或者网络url时报(文件名、目录名或卷标语法不正确)的错
参考文章:https://blog.youkuaiyun.com/qq_33142257/article/details/52371733将文件url转换成URL格式,再转换成String类型,这种方法还是会报同样的错URL url = new URL(rs.getModel());FileInputStream fin = new FileInputStream(url.toString()...原创 2019-04-11 17:03:14 · 11723 阅读 · 1 评论 -
Batch update returned unexpected row count from update [0]; actual row count: 2; expected: 1
问题描述:用jpa删除数据库记录报错:org.springframework.orm.jpa.JpaSystemException: Batch update returned unexpected row count from update [0]; actual row count: 2; expected: 1; nested exception is org.hibernate.j...原创 2019-08-10 17:03:02 · 2553 阅读 · 0 评论